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.

  • MonkderVierte@lemmy.ml
    link
    fedilink
    arrow-up
    2
    arrow-down
    1
    ·
    20 hours ago

    web versions usually compile fine with no tweaking

    Isn’t Flutter basically a webapp anyway?

    • Jiří Král@discuss.tchncs.de
      link
      fedilink
      arrow-up
      1
      ·
      edit-2
      12 hours ago

      Flutter uses its own UI engine. It does not rely on any webview AFAIK.

      By contrast, Flutter minimizes those abstractions, bypassing the system UI widget libraries in favor of its own widget set. The Dart code that paints Flutter’s visuals is compiled into native code, which uses Impeller for rendering. Impeller is shipped along with the application, allowing the developer to upgrade their app to stay updated with the latest performance improvements even if the phone hasn’t been updated with a new Android version. The same is true for Flutter on other native platforms, such as Windows or macOS.

      https://docs.flutter.dev/resources/architectural-overview#flutters-rendering-model

    • ikidd@lemmy.world
      link
      fedilink
      English
      arrow-up
      3
      ·
      16 hours ago

      Yah, and it has it’s limitations, but it’s far lighter than electron IME.