Is it ok when I create QML qtquick file for every UI block?
-
It’s kinda weird question but I just learned qt quick for a week or so, but I found it’s so powerful with UI designer
Every UI element ( a page, a part of a page that has complex element, a card….) I created a QML file and at the main view, I call them as component and set Id for each one( so in this way they’re not visible)
Every time I need them to show up, for example in a stack view, I push them in, or in gridview, I set them as the delegate, I don’t know if this way of using QML file is right or wrong( I treat all QML as control with properties).
I don’t know if this way is good for long run, in the image attached, lef panel is a stackview with content is a qml file, in that qml is another set of multiple qml file that throw in a column…
Sorry for my bad english -
There is nothing like a wrong. It is better to create the individual loadable qml files. You should load or create objects from qml which are not visible. If one screen itself is very complete, it is better to break them into smaller pieces and use them.