this post was submitted on 30 Jun 2023
4 points (100.0% liked)

Flutter

527 readers
1 users here now

Flutter and the related logo are trademarks of Google LLC. We are not endorsed by or affiliated with Google LLC

founded 1 year ago
MODERATORS
 

Recently started testing different frameworks to build small standalone apps to help manage a bigger (quite large) system. Latest one I was working with was TKinter for python and it was good. Running queries and generating reports. but the UI was very outdated. Yesterday I started looking into flutter for windows desktop and been looking at available packages on pub.dev

you are viewing a single comment's thread
view the rest of the comments
[–] merthyr1831 2 points 1 year ago

Small desktop apps are absolutely fine in Flutter. For your use case I can't imagine there being much problem, beyond connecting to the databases youre using to pull data. You might have to write the API client yourself if it's not a relatively new database server.

I'd say have a go with it. The basics are similar to TKinter and the UI is a lot nicer by default. You'll also find it super easy to run on desktop and web - quite literally just changing what the target is and it'll work out of the box (until you start relying on platform-specific features or packages).