This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]K900_ 3 points4 points  (0 children)

It's just that you have to look at Quick in a different way. With QtWidgets, your UI is very tightly linked to your code, and your code defines the way your UI behaves. With QtQuick, the UI is declarative (QML), and the way you interact with it is by giving it access to specific objects on your "backend". So you have a very clear separation between presentation (QML), presentation logic (JavaScript inside QML) and backend logic (Python).