Skip to content Skip to sidebar Skip to footer

Multiple Qml Files In Pyqt

I am using pyqt and I have the following directory structure: root ----> apps/ ----> ui/ I have a simple qml based application in the app folder as: apps/testqt.py from PyQt

Solution 1:

Similarly i use multiple qml files along with multiple python files. When i access application it loads perfectly two qml files successfully but when stacked through third qml page, the application crashes. It throws segmentation fault.

I use Stackview to push and pop through QML pages, during debugging i found that it works when push and pop are done for just for two pages.

I have came across if i use Swipeview too. What i guess is that the engine that was created can be loaded with two stack QML files.

Post a Comment for "Multiple Qml Files In Pyqt"