Kyle Uzerty
Kyle Uzerty

Reputation: 23

Framework for cross platform desktop apps

I am looking for a good framework to code a cross-platform app in that would be able to run on Windows, Mac OS and Linux.

There are a few things that I want:

I have used QT before but I don't really like how the UI development works. It is very difficult to create custom styles.

I know it is a lot to ask for but what do you suggest ;)

Thank you very much!

Upvotes: 2

Views: 1359

Answers (2)

Gaben
Gaben

Reputation: 374

You can go with the Flutter 2.0 application (together with Dart).

It's not only compatible with Windows, Linux, macOS, but also Android, iOS, web.

Read more about Flutter here.


P.S Desktop support is still in beta, but it's already in the official release, so it's mostly stable.

Upvotes: 0

solimanware
solimanware

Reputation: 3051

Did you try ELECTRON ?

If you can build a website, you can build a desktop app. Electron is a framework for creating native applications with web technologies like JavaScript, HTML, and CSS. It takes care of the hard parts so you can focus on the core of your application.

PS: Skype and Visual Studio Code are built using Electron.

Upvotes: 1

Related Questions