flet
flet copied to clipboard
Flet enables developers to easily build realtime web, mobile and desktop apps in Python. No frontend experience required.
'flet build' command should use proper version of 'flet-build-template' when building from 'sources' version. Fix use update_version() which calls 'git describe --abbrev=0' to retrieve proper version.
Closes #791 Test Code: ```py import flet as ft def main(page: ft.Page): page.add( ft.AutoComplete( suggestions=[ ft.AutoCompleteSuggestion(key="one 1", value="One"), ft.AutoCompleteSuggestion(key="two 2", value="Two"), ft.AutoCompleteSuggestion(key="three 3", value="Three"), ], on_select=lambda e: print(e.selection), ) )...
Similar to FastAPI. Sub-issue from https://github.com/flet-dev/flet/issues/1544.
**If I run flet run '.\main.py' then everything works fine. but if I do 'flet publish main.py' and 'run python -m http.server --directory .\dist\' I follow the link 'http://localhost:8000/' the...
**Find a way to debug UI issues** Flet is very elegant and easy to use. It's smooth to develop simple UI, but when it comes to developing more complex UI...
**Please Describe The Problem To Be Solved** https://pub.dev/packages/media_kit There is a lot of functionality missing from that page: buffer, audioBitrate, logs etc But one IMPORTANT one it's missing is: Stream...
Does anyone know, how to use locale python module in flet on mobile? On android it does not return any data for language (locale.getlocale()). On desktop it seems to be...
# Failed building wheel for `brotli, pycryptodomex` while building apk **Description** I am creating a mobile app to download YouTube Videos using `yt-dlp` library, the issue occurs while building apk:...
when try to use flet build apk and add opencv-python in requirement.txt i got this issue when i remove it apk generate successfully (base) ahmedashraf@ahmeds-mbp app % flet build apk...
**Description** I have a Flet app with code distributed in several folders (like view, dialogs, ...). I want to use hot reload not to start the app after each code...