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

`page.floating_action_button` displays at the right bottom corner of the window when set to FAB control. If we set to a `Column`, then this column is displayed in the page, similar...

bug

### Duplicate Check - [X] I have searched the [opened issues](https://github.com/flet-dev/flet/issues) and there are no duplicates ### Describe the bug Running the default empty app in web version results in...

enhancement

### Duplicate Check - [X] I have searched the [opened issues](https://github.com/flet-dev/flet/issues) and there are no duplicates ### Describe the bug When attempting to extend Flet in development mode using flet...

### Duplicate Check - [X] I have searched the [opened issues](https://github.com/flet-dev/flet/issues) and there are no duplicates ### Describe the requested feature Adding a Firebase plugin to the Flet framework would...

feature request

### Duplicate Check - [X] I have searched the [opened issues](https://github.com/flet-dev/flet/issues) and there are no duplicates ### Describe the bug TextField has the properties height and width that do not...

enhancement
controls

### Duplicate Check - [X] I have searched the [opened issues](https://github.com/flet-dev/flet/issues) and there are no duplicates ### Describe the bug ListTile properties like hover_color or bgcolor_activated or bgcolor are overlapped...

**Code example to reproduce the issue:** ```python import flet as ft def main(page: ft.page): def form_on_click(cls): print(f"Click: {name.error_text} - {type(name.error_text)}") name.error_text = "Required" name.error_text = None name.update() print(f"Click: {name.error_text} -...

bug

This is a CodeEditor widget in `flutter`, I really like it and I think it will add a great widget to `flet` if `flet` did support it. Its a multi-line...

feature request

The ability to render mathematical images (Latex, Mathjax,...) is required Markovna does not support mathematical expressions even as https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/writing-mathematical-expressions For example , the solution on flutter https://pub.dev/packages/flutter_tex

feature request

I'm trying to make a window that becomes invisible for 1 sec when I click a button and then turns visible again. The code is super simple and it works...