Repository URL to install this package:
Version:
0.28.0.dev4785 ▾
|
flet
/
METADATA
|
---|
Metadata-Version: 2.4 Name: flet Version: 0.28.0.dev4785 Summary: Flet for Python - easily build interactive multi-platform apps in Python Author-email: "Appveyor Systems Inc." <hello@flet.dev> License-Expression: Apache-2.0 Project-URL: Homepage, https://flet.dev Project-URL: Repository, https://github.com/flet-dev/flet Project-URL: Documentation, https://flet.dev/docs Requires-Python: >=3.10 Description-Content-Type: text/markdown Requires-Dist: flet-cli==0.28.0.dev4785; extra == "cli" Requires-Dist: flet-desktop==0.28.0.dev4785; extra == "desktop" and (platform_system == "Darwin" or platform_system == "Windows") Requires-Dist: flet-desktop-light==0.28.0.dev4785; platform_system == "Linux" and (extra == "all" or extra == "desktop") Requires-Dist: flet-web==0.28.0.dev4785; extra == "web" Requires-Dist: oauthlib>=3.2.2; platform_system != "Pyodide" Requires-Dist: httpx>=0.28.1; platform_system != "Pyodide" Requires-Dist: repath>=0.9.0 Requires-Dist: msgpack>=1.1.0 Provides-Extra: all Requires-Dist: flet-cli; extra == "all" Requires-Dist: flet-desktop; extra == "all" Requires-Dist: flet-web; extra == "all" Provides-Extra: cli Requires-Dist: flet-cli; extra == "cli" Provides-Extra: desktop Requires-Dist: flet-desktop; extra == "desktop" Provides-Extra: web Requires-Dist: flet-web; extra == "web" # Flet - quickly build interactive apps for web, desktop and mobile in Python [Flet](https://flet.dev) is a rich User Interface (UI) framework to quickly build interactive web, desktop and mobile apps in Python without prior knowledge of web technologies like HTTP, HTML, CSS or JavaScript. You build UI with [controls](https://flet.dev/docs/controls) based on [Flutter](https://flutter.dev/) widgets to ensure your programs look cool and professional. ## Requirements * Python 3.7 or above on Windows, Linux or macOS ## Installation ``` pip install flet ``` ## Create the app Create `main.py` file with the following content: ```python import flet as ft def main(page: ft.Page): page.title = "Flet counter example" page.vertical_alignment = ft.MainAxisAlignment.CENTER txt_number = ft.TextField(value="0", text_align=ft.TextAlign.RIGHT, width=100) def minus_click(e): txt_number.value = str(int(txt_number.value) - 1) page.update() def plus_click(e): txt_number.value = str(int(txt_number.value) + 1) page.update() page.add( ft.Row( [ ft.IconButton(ft.icons.REMOVE, on_click=minus_click), txt_number, ft.IconButton(ft.icons.ADD, on_click=plus_click), ], alignment=ft.MainAxisAlignment.CENTER, ) ) ft.app(main) ``` ## Run as a desktop app The following command will start the app in a native OS window: ``` flet run main.py ```  ## Run as a web app The following command will start the app as a web app: ``` flet run --web main.py ```  ## Learn more Visit [Flet website](https://flet.dev). Continue with [Python guide](https://flet.dev/docs/getting-started/python) to learn how to make a real app. Browse for more [Flet examples](https://github.com/flet-dev/examples/tree/main/python). Join to a conversation on [Flet Discord server](https://discord.gg/dzWXP8SHG8).