website/blog/2026-05-28-flet-studio.md
Today we're launching Flet Studio — a browser-based IDE for writing, running, saving, and sharing Flet apps. Your Python code runs entirely in the browser, so there's no account required to try it and no local install required to run something a friend shared with you.
It started life as a playground for Flet apps, but turned out to be much more: a place to prototype, a gallery of editable examples, and a way to send someone a working app as just a link.
<a href="https://flet.app" target="_blank" rel="noopener noreferrer"> </a>print() shows
up in a console pane, so plain Python scripts run here too.The whole thing runs in your browser, no server required:
flet publish and flet build web produce — what you see in Studio is what you'd get
from a published Flet static site.Does it replace local Flet development?
No. Studio is for trying Flet, prototyping small apps, sharing snippets, learning, and
showing off ideas. For everything else — desktop and mobile builds, native packages, big
multi-file projects, your favorite IDE and debugger, and the full Python ecosystem without
the Pyodide constraints above — install Flet locally and use flet run and flet build.
Is it just for web?
Nope! The new-app template and every gallery example are complete cross-platform Flet
projects with a pyproject.toml. Download an app as a zip, unpack it, run
uv run flet build apk, and you've got a working Android app — same for iOS, desktop, and
the web.
Where's the AI?
Coming! Wouldn't it be nice to just ask "add another button here and put a gradient background there", or "scaffold a simple app with 3 pages and a router"? That's where we're headed.
Open flet.app, build something, and share it. We'd love your feedback — drop it in GitHub Discussions or on Discord.
Happy Flet-ing!