I find that a lot of libraries tend to be Linux-focused and generally kind of ugly on Windows, so what do you use when you want to make something that looks nice and performs well on Windows?

The best looking ones I’ve seen were web frontends like in Tauri. A runner up would maybe be iced-rs. Which is a shame because I really wanted to use relm or fltk-rs but it looks like I’d almost have to use the web renderer to get “sleek, sexy” GUIs…

  • Solemarc@lemmy.world
    link
    fedilink
    arrow-up
    9
    ·
    edit-2
    7 months ago

    Most GUI libraries in rust are in some version of 0.x. this isn’t like flutter or Avalonia where our GUI libraries are mature. Wasn’t Iced basically a one man show before system 76 started using it for their desktop environment and made huge contributions to it?

    I think for now your best bet is probably a webview framework like tauri or dioxus. I’m sure things like iced will get there. But by using webview these frameworks have offloaded a lot of dev work. They’ve made painting pixels on the screen someone else’s job

    • BB_C@programming.dev
      link
      fedilink
      arrow-up
      1
      arrow-down
      2
      ·
      edit-2
      7 months ago

      Wasn’t Iced basically a one man show before system 76 started using it for their desktop environment and made huge contributions to it?

      No. And what they contribute, they contribute to their own fork.

      They do, however, help the ecosystem with crates like cosmic-text.

      I think for now your best bet is probably…

      Their best bet was to ask around (done) and filter out the waffle. They already got a good specific actionable answer out of it.

  • XTL@sopuli.xyz
    link
    fedilink
    arrow-up
    1
    ·
    7 months ago

    GTK on other languages. Haven’t found any rust ones or bindings that look worth a try yet, though. Should find the time eventually.