5 ms·
It’s a tradeoff. You either make your app native but only for one platform, or you make it look “universal” and run on all three.
by tonsky 2y ago
It’s a tradeoff. You either make your app native but only for one platform, or you make it look “universal” and run on all three.
- layer8 2y agoThat’s not accurate, there are cross-platform toolkits that achieve at least a close-to-native look&feel. This is very different from giving up on it entirely and going web-style UI.
- tonsky 2y agoIf they use native widgets, they usually look really bad If they just “imitate” look and feel, they usually fall very short of the real thing Either way, it’s bad experience for the end user
- cess11 2y agoI don't know, I think the Racket GUI toolkit and JavaFX work fine for building cross platform standalone applications.
- tonsky 2y agoThat’s two perfect examples! Racket seems to try to use native widgets, and looks horrible as a result, at least on macOS JavaFX uses the same approach as Humble UI: they draw all the widgets themselves and have custom cross-platform look and feel. We aim to be better quality version of JavaFX
- kaba0 2y agoDo you mean the state of the art java AWT and/or Eclipse toolkit?