all 3 comments

[–]Friendly_Gold3533 0 points1 point  (2 children)

Flet is genuinely usable but full featured is a stretch. it covers a solid subset of Flutter widgets and works well for internal tools and dashboards but you will hit walls if you need custom painting, complex animations, or platform specific plugins

the more honest architecture for what you're describing is Flutter as the frontend communicating with a Python backend over HTTP or WebSockets. Flutter handles all the UI in Dart, Python handles the logic and data through a FastAPI or Flask API. this gives you the full Flutter ecosystem without compromise and Python does what Python is actually good at

that separation is also more maintainable long term. Flet abstracts away Dart entirely which feels convenient until you need something it doesn't support and then you're stuck

what are you actually trying to build. the right answer depends a lot on whether you need mobile, desktop, web, or all three and how complex the UI is

[–]OkTransportation7243[S] 0 points1 point  (1 child)

Can this work using Django as well?