flet icon indicating copy to clipboard operation
flet copied to clipboard

Flet enables developers to easily build realtime web, mobile and desktop apps in Python. No frontend experience required.

Results 469 flet issues
Sort by recently updated
recently updated
newest added

would be handy to be able to screenshot the entire running app and any widget. use case: using Flet to generate png/jpgs for static graphic designs, improve performance by caching...

Please change what flet outputs for dark mode when it gets its 'blue screen' error (even blue would be better than all white !) ![Screen Shot 2022-09-11 at 7 23...

```python def make_project_view(project: Project): return Card( content=Container( content=Column( [ ListTile( leading=Icon(icons.WORK), title=Text(project.title), subtitle=Text(project.tag), trailing=PopupMenuButton( icon=icons.WARNING, items=[ PopupMenuItem( icon=icons.EDIT, text="Edit", ), PopupMenuItem( icon=icons.DELETE, text="Delete", ), ], ) ), ] ), padding=10,...

"View is the top most container for all other controls." -- https://flet.dev/docs/controls/view "Page is a container for [View](https://flet.dev/docs/controls/view) controls." -- https://flet.dev/docs/controls/page From these documentation pages I did not get a...

https://github.com/TimWhiting/dartpy/tree/master/dartpy https://github.com/python/cpython/blob/f4c03484da59049eb62a9bf7777b963e2267d187/Doc/extending/embedding.rst https://github.com/TimWhiting/dartpy/blob/master/dartpy/lib/src/ffi/gen.dart https://dart.dev/guides/libraries/c-interop https://docs.python.org/3/c-api/index.html#c-api-index https://github.com/kivy/kivy-ios/tree/ab219f06099c9ae4a4ccd853dbe49d19309953a7/kivy_ios/tools/templates/%7B%7B%20cookiecutter.project_name%20%7D%7D-ios https://github.com/joaoventura/pybridge-ios https://www.google.com/search?q=PyRun_SimpleString+ios https://docs.flutter.dev/development/platform-integration/ios/c-interop https://github.com/beeware/Python-Apple-support https://github.com/beeware/Python-Android-support/blob/main/USAGE.md

From time to time, we may want to keep different parts of the text in a different style, and there is no solution other than using `Row`for this, but this...

Hi Flet team, This is an extraordinarily beautiful repo for python devs :) I am just curious do you have any support now or future for Admob?

platform: mobile
platform: web
feature request

Hi, Thanks for this fantastic project, I like flutter and python, and this project brings both of them together. I read the docs and some code of `flet` but could...

![3df1321d2237e8f0ec612d1e3b9d9758](https://user-images.githubusercontent.com/875194/188834596-d974ca7c-332c-4c03-9c99-90261866e3fb.png) For an app to look and feel native on macOS, the menu bar needs to be filled with useful functions. I wasn't able to find something about the menu...

enhancement
controls
feature request

In my application I would like to display charts (built with Altair, e.g. https://altair-viz.github.io/gallery/simple_bar_chart.html). These charts are HTML/JS/CSS content. How can such content be shown in a flet app?