flet
flet copied to clipboard
Flet enables developers to easily build realtime web, mobile and desktop apps in Python. No frontend experience required.
With this code: ```python import flet from flet import Column, Container, Page, border, colors def main(page: Page): root = Container(border=border.all(3, colors.BLACK), expand=True) content = Column([Container(bgcolor=colors.GREEN, height=200)], expand=True) root.content = content...
https://blog.gskinner.com/archives/2021/11/flutter-keyboard-shortcuts-the-easy-way.html
Once you have any animations, you typically run into the following use cases, in decreasing order of importance (my opinion): 1. Run several animations in **parallel** I assume this is...
Implicit animations: * [x] AnimatedContainer: alignment, width, height, bgcolor, gradient, padding, margin, border_radius, border * [x] AnimatedOpacity - all visible controls * [x] AnimatedSize - all controls, check `Image` for...
Hovering would be good, it can improve UI and give a variety of opportunities to build UIs with Flet
I can't run your examples, flet just opened a black screen after running the script. 
Often there is a need to place a control on top of another, and control which control gets e.g. a mouse click. I just tested placing Text on top of...
It appears there is no way to set various controls' accessible name using the Flet bindings. There, for example, appears to be no way to make an iconButton screenreader-accessible; tooltip...
The repository does not have CONTRIBUTING.md. And this causes confusion in the contribution and also the reduction of contributions