• by snazz on 11/5/2018, 5:26:33 PM

    If the app is pretty simple, you could get away with writing it natively for each platform instead of worrying about making one version cross-platform. This way it will look native on every platform and it shouldn’t be significantly more work, assuming your app is fairly simple.

  • by jrgoj on 11/5/2018, 6:29:01 PM

    QT is more accessible than you might assume. The QT Designer comes with a number of templates to get you running quickly. Connecting UI elements to backend code is fairly straightforward as well, and you can do much of it using the designer UI itself. Documentation is also pretty great.

  • by mherrmann on 11/5/2018, 6:36:26 PM

    Try my https://build-system.fman.io. Based on PyQt, so you can use Python not C++, and makes cross-platform deployment super easy.

  • by rboyd on 11/5/2018, 6:09:42 PM