Hello all,
I’m trying to get into GUI programming, but am hesitating on using a Python library to make my first barebones program. My goal is to code basic buttons and understand how operating systems implement the way they draw windows for applications.
I have coded mostly in scientific libraries or high-level languages that are fairly simple (Python, Matlab, Julia)… Also am familiar with basic concepts and syntax from C.
Looking for recommendations to start. I am happy to learn a new PL. Interested in writing code for legacy hardware and mobile. Bonus if the codes are general enough to be written for most displays one could interact with.
I’ve been using Flutter, I like how it’s cross-platform, mostly. I’ve generally built things for Android, but the desktop (Linux and Windows) and web versions usually compile fine with no tweaking. Couldn’t speak to the iOS versions as I can’t be arsed to jump through Apple’s hoops. You can make a nice looking app with it for whichever platform you’re targeting.
It’s very well supported, lots of examples, well documented. Not as much out there as Python for examples and troubleshooting, but not bad.
Flutter apps are good but from the UI perspective have their own limitations, you essentially rely on premade UI components and if they don’t support a method you need you’re stuck. And I’ve seen some flutters behave weird. I would build a prototype before committing to it.
Isn’t Flutter basically a webapp anyway?
Flutter uses its own UI engine. It does not rely on any webview AFAIK.
https://docs.flutter.dev/resources/architectural-overview#flutters-rendering-model
Yah, and it has it’s limitations, but it’s far lighter than electron IME.