Nova
Nova

Reputation: 2666

Is there any GUI framework with support for both web and desktop apps?

Is there any GUI framework that can render a UI I create both as a web app and a desktop app, like on created with Qt or GTK? What I do not want is a "native" app that just displays the HTML UI in a window.

Upvotes: 0

Views: 729

Answers (3)

Nova
Nova

Reputation: 2666

There is an effort to realize this for Qt using QML:

QML2Web

Upvotes: 0

Tommy Grovnes
Tommy Grovnes

Reputation: 4156

Have a look at Silverlight if you don't mind .NET coding. It is possible to do desktop and web using the same codebase. See example here

Upvotes: 1

Alex W
Alex W

Reputation: 38173

You can create native apps for Linux-based OSes easily using Quickly.

Also, in the event that you decide to just create a native app that displays HTML, note that Prism will be a good platform to use.

It will probably save you a lot of time to just have a native app shell that displays the HTML, because there will be no extra coding.

I don't know of any programs that will convert HTML directly into native UI.

Upvotes: 0

Related Questions