mobile GUI
-
There's this module:
-
@mahadin Qt Widgets (i.e the C++ part) too will work on mobile platforms. If you donot care about the rendering performance or donot use animations etc.. you can use Qt Widgets in that case.
Using QML has advantage over as it has in built support forOpenGL ES
since it is based on it, thus providing optimizations overQPainter
.
You can implement only the view part in QML keeping the rest on C++ side.