flet
flet copied to clipboard
Flet enables developers to easily build realtime web, mobile and desktop apps in Python. No frontend experience required.
every time flet loads, we get a loading page of flet icon or a loading wheel spinning. Is there a way to make a custom splash screen come up in...
``` import flet from flet import Page, TextField, colors def main(page: Page): page.padding = 50 textField = TextField( text_size=10, cursor_color=colors.RED, selection_color=colors.YELLOW, color=colors.PINK, bgcolor=colors.BLACK26, filled=True, focused_color=colors.GREEN, focused_bgcolor=colors.CYAN_200, border_radius=30, border_color=colors.GREEN_800, focused_border_color=colors.GREEN_ACCENT_400, max_length=20,...
**Please Describe The Problem To Be Solved** Presently Flet Image control can load and display animated gifs. Would like ability to - load gif (and know when its done loading)...
I do maximize, minimize, close events through custom controls, and trigger the response through page.update (), but it always feels like a delay of about 0.5 seconds after clicking, not...
### Discussed in https://github.com/flet-dev/flet/discussions/336 Originally posted by **jet10000** September 16, 2022 I want to get clipboard screenshot image, How to watch clipboard images changes?
A page listing apps written with flet would be great for inspiration and proof of concept.
https://docs.microsoft.com/en-us/aspnet/core/host-and-deploy/linux-nginx?view=aspnetcore-6.0#configure-nginx https://www.nginx.com/blog/using-free-ssltls-certificates-from-lets-encrypt-with-nginx/
I am building a desktop app with flet, which depends on a couple of Python libraries. Pyinstaller works like a charm, however, the resulting app bundle on a Mac has...
Hey ! great work ! amazing what are you accomplish 🥳. It would be nice if instead of using literals e.g: `ScrollMode` we changed for using Enums so in the...