Writing GUI Apps Using the Red Programming Language
31–40 of 117 posts
Re: Writing GUI Apps Using the Red Programming Language
#32Earlier quoted context omitted.
I expect something equivalent or better to come out of what is happening with WASM in next year or so. So many people are talking about missing the power of VB, early Delphi, Turbo Pascal etc. and WASM is first tech for a while that looks like it could take that power to the browser.
Sure, there's going to be a bloom of compilers of anything to WASM, but what's discussed here is the opposite technology: lean native applications.
WASM kind of fixes that - it takes that 90s/00s native speed into the frontend of the moment and makes complex UIs more viable. Any dev with more than 20 years experience shakes their head that it takes WASM to make that happen - but I'm just grateful it is.
Re: Writing GUI Apps Using the Red Programming Language
#33Red is awesome. Why it's not hip it's a mystery to me...
Re: Writing GUI Apps Using the Red Programming Language
#34HaxeUI is another cross platform option: http://haxeui.org
How is the development experience with haxe-ui? Is it trully write once then deploy to all without any need for tweaking quirks on each of the target specifics?
Re: Writing GUI Apps Using the Red Programming Language
#35I really miss an awesome cross-platform GUI. Electron is awesome, but bloated.
Qt with QtQuick is awesome, and not bloated :D (as in, it's good enough to work at very decent framerates on embedded systems) Here's a simple example: https://github.com/jcelerier/TodoMVC-QML Notice how the whole thing is a bit less than 150 lines, whereas for instance a Vue.js (the web framework the closest to QML in concept I'd say, though JSX is also not far) implementation is around 200 lines with HTML / CSS / J…
Re: Writing GUI Apps Using the Red Programming Language
#36I always wondered why there has been no real successor to VB. This looks promising!
Re: Writing GUI Apps Using the Red Programming Language
#37Funny. I just started working on an open source solution to that exact problem: https://github.com/mherrmann/fbs
Re: Writing GUI Apps Using the Red Programming Language
#38Earlier quoted context omitted.
Agreed. But Electrcn seems to be the only option these days.
Electron is pushed by JS devs because now they can target another platform with their toolset. The JS crowd is rather large. Sadly, Electron style apps aren't going to go away any time soon.
Kivy is looking to have good principles, but the standard UI kit is quite awful. Supports popular targets except for the web. Qt quick (controls) enables both a good desktop feel and an aright one on mobile platforms. Doesn't support the web (but PureQML is an effort to port the language).
Haxe looks promising but public adoption, for some reason, seems very slim. Adobe Air and things like that promise similar things, but example apps are complete garbage.
React Native works quite well on mobile. There could probably be a similar effort on the desktop, it's surely possible to do something - but then again I'm not a huge fan of javascript either.
I have started doing projects in a browser myself because it is so easy to get started and share what you made, so I can understand that people would want to just use the work they did and bundle it up for shipping. It just looks like something could be done for Electron to lose some weight, at least. Why does it require a Nodejs environment and a browser for every app? Why not adopt the browser model of feeding apps into one renderer for display? Things like that. Maybe they'll wake up some day.
Re: Writing GUI Apps Using the Red Programming Language
#39Re: Writing GUI Apps Using the Red Programming Language
#40what about tcl/tk for GUI? mature, fast, and ubiquitous