Would consider flutter for smaller apps as I had a great experience before.
Ask HN: What toolchains are people using for desktop app development in 2025?
21–30 of 136 posts
Re: Ask HN: What toolchains are people using for desktop app development in 2025?
#22To my dismay, my company uses JavaScript, HTML, CSS with a custom Chromium-based web browser installed on your PC. The performance is shit: GUI performance that should take milliseconds takes seconds to render with constant pinging of corporate servers and user activity logging. Development mostly done in IntelliJ or VS Code.
Re: Ask HN: What toolchains are people using for desktop app development in 2025?
#23Now that Chromium supports the File System Access API on desktop and mobile, I am building every software I need as HTML+JS+CSS. Before that, handling files in the browser was cumbersome. You had to offer download and upload links for users to manage files. And handling whole directories was impossible. But now web apps are like native software tools that you can use to edit and manage files on the file system. And t…
Re: Ask HN: What toolchains are people using for desktop app development in 2025?
#24For both iOS and Android app: - Xcode - SwiftUI - Supabase - Claude CLI - Skip.tools (converts SwiftUI to native Katlin code) Been developing mobile apps for over 15 years. This is by far the best stack for developing mobile apps. Speed, total control, native UI's. Love it.
Re: Ask HN: What toolchains are people using for desktop app development in 2025?
#25Windows Forms are alive and well. Still supported in latest .net versions.
Re: Ask HN: What toolchains are people using for desktop app development in 2025?
#26To my dismay, my company uses JavaScript, HTML, CSS with a custom Chromium-based web browser installed on your PC. The performance is shit: GUI performance that should take milliseconds takes seconds to render with constant pinging of corporate servers and user activity logging. Development mostly done in IntelliJ or VS Code.
At that point, what's the point in maintaining your own browser fork instead of just telling users to point their own (Blink, even) browser at localhost?
Re: Ask HN: What toolchains are people using for desktop app development in 2025?
#27Re: Ask HN: What toolchains are people using for desktop app development in 2025?
#28Quite good, I've been building this Pomodoro:
https://github.com/reciperium/temporis/
I've also used nix to build the packages when possible.
One of the things I like about slint is that it has native components. They also have experimental support for Android and iOS.
The language is quite simple as well. Though it could benefit from something like flex
Re: Ask HN: What toolchains are people using for desktop app development in 2025?
#29Flutter is a super compelling framework ( https://flutter.dev/multi-platform/desktop ), but I’d live in fear of it randomly being sent to the Google graveyard.
Re: Ask HN: What toolchains are people using for desktop app development in 2025?
#30Rust + Egui for special cases like DAW plugins.