Hacker News new | ask | show | jobs
by pjmlp 3998 days ago
You can get the same with Xamarin, Qt and similar tools that offer a better native integration than a web view.

Even if I have to code native like widgets in QML, it is surely way better than hacking around the DOM.

1 comments

I've found loading QML-based interfaces to be slow on low to mid range android phones. It feels sluggish to start the app. I wonder if the alternate (QWidgets on an OpenGLContext) is still better than random DOM hacks?
The commercial version compiles QML into native code.

http://doc.qt.io/QtQuickCompiler/

Sweet, will check try this out tonight! Thanks for the tip!