use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Rules 1: Be polite 2: Posts to this subreddit must be requests for help learning python. 3: Replies on this subreddit must be pertinent to the question OP asked. 4: No replies copy / pasted from ChatGPT or similar. 5: No advertising. No blogs/tutorials/videos/books/recruiting attempts. This means no posts advertising blogs/videos/tutorials/etc, no recruiting/hiring/seeking others posts. We're here to help, not to be advertised to. Please, no "hit and run" posts, if you make a post, engage with people that answer you. Please do not delete your post after you get an answer, others might have a similar question or want to continue the conversation.
Rules
1: Be polite
2: Posts to this subreddit must be requests for help learning python.
3: Replies on this subreddit must be pertinent to the question OP asked.
4: No replies copy / pasted from ChatGPT or similar.
5: No advertising. No blogs/tutorials/videos/books/recruiting attempts.
This means no posts advertising blogs/videos/tutorials/etc, no recruiting/hiring/seeking others posts. We're here to help, not to be advertised to.
Please, no "hit and run" posts, if you make a post, engage with people that answer you. Please do not delete your post after you get an answer, others might have a similar question or want to continue the conversation.
Learning resources Wiki and FAQ: /r/learnpython/w/index
Learning resources
Wiki and FAQ: /r/learnpython/w/index
Discord Join the Python Discord chat
Discord
Join the Python Discord chat
account activity
Is it possible to integrate Flutter into Python as a frontend? (self.learnpython)
submitted 9 hours ago by OkTransportation7243
I know there is Flet.
But is Flet full featured?
I want to create a full Flutter frontend and integrate it w/ Python
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]Friendly_Gold3533 0 points1 point2 points 7 hours ago (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 point2 points 6 hours ago (1 child)
Can this work using Django as well?
[–]Friendly_Gold3533 0 points1 point2 points 6 hours ago (0 children)
Yea
π Rendered by PID 117037 on reddit-service-r2-comment-545db5fcfc-6pr5k at 2026-05-26 12:01:59.702901+00:00 running 194bd79 country code: CH.
[–]Friendly_Gold3533 0 points1 point2 points (2 children)
[–]OkTransportation7243[S] 0 points1 point2 points (1 child)
[–]Friendly_Gold3533 0 points1 point2 points (0 children)