|
|
|
|
|
by rubymamis
544 days ago
|
|
> I use Qt myself and one of the best things about the framework and toolkit is the UI tooling that allows me to drag and drop and visually create my UIs in the UI Designer app. But then it's not trivial to write responsive/adaptive applications. In contrast, QML makes it extremely easy to build such apps. I used to build UIs in the designer as well[1] but after studying QML there's no going back. Here's a new project I program solely in QML (and C++ for the logic)[2]. [1] https://github.com/nuttyartist/notes [2] https://www.get-vox.com/ |
|
"But then it's not trivial to write responsive/adaptive applications."
Personally I prefer the widgets over QML mostly because QML is just too poorly typed and checked + you normally need to do a bunch of integration work between the QML and the C++ code. I do see the appeal though.