flet
flet copied to clipboard
Flet enables developers to easily build realtime web, mobile and desktop apps in Python. No frontend experience required.
I appreciate all your effort in putting this framework together for Python. Please, can something be done on the apk size? The size is ridiculously large. Pls I shall be...
Fix https://github.com/flet-dev/flet/issues/3035. PR by your request
People using audioplayers package cannot get a wakelock on android to continue playing music, soon as screen turns off or app is backgrounded. The flutter package https://pub.dev/packages/wakelock_plus seems to solve...
**Description** When ft.Text is in a SelectionArea the on_change callback works as intended, unless either selectable is True or the Text is using TextSpans. In the later case the spans...
**Description** Click event of Container is not ContainerTapEvent, so I can't get position like local_x **Code example to reproduce the issue:** ```python self.map_container = ft.Container(content=self.map_img, width=self.large_map_width, height=self.large_map_width, on_click=self.on_map_click, alignment=ft.alignment.top_left) ```...
**Description** When using a Chip control, the color is not displayed on Android. **Code example to reproduce the issue:** ```python import flet as ft def main(page: ft.Page): page.add(ft.SafeArea(ft.Chip(label=ft.Text("foo"), color="red"))) ft.app(target=main)...
**Describe the results you expected:** **Flet version (`pip show flet`)**: ``` Version: 0.22.0 ``` **Give your `requirements.txt` file (don't `pip freeze`, instead give direct packages):** ``` flet==0.22.* ``` **Operating system**:...
When packaging an app for macOS (arm) with `torch`, the app builds but when launched, it gives a white screen with the error `RuntimeError: Unable to find torch_shm_manager at /Users/admin/Library/Caches/flet_testing-1.0.0-1/app/__pypackages__/torch/bin/torch_shm_manager`...
**Description** Issue: if you add ft.Video with the source argument that uses the mpd file, then re-overwriting ft.Video using a link to the mpd file causes the application to crash...
**Description** I'm trying to localize my program. I am using the gettext module. When compiling the project, I add the `locales `directory with the `flat pack main.py --add-binary locales:locales` to...