Flet for Python - easily build interactive multi-platform apps in Python
Project description
Flet - quickly build interactive apps for web, desktop and mobile in Python
Flet 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 JavaSscript. You build UI with controls based on Flutter 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:
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.
Continue with Python guide to learn how to make a real app.
Browse for more Flet examples.
Join to a conversation on Flet Discord server.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file robocorp_flet-0.4.2.2.tar.gz
.
File metadata
- Download URL: robocorp_flet-0.4.2.2.tar.gz
- Upload date:
- Size: 31.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.0 CPython/3.9.13 Windows/10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 98d20bcfdfa6444ddfc06aae6fdb86b7bddf3e5eb7660ad1186bb6cf3ca78ed3 |
|
MD5 | 385be4a0636683ae35c68e6d85fbe4fa |
|
BLAKE2b-256 | 1119e2d322679048e0b437070a3a5f106ab4eb431af6dccabb51d73f204c7e10 |
File details
Details for the file robocorp_flet-0.4.2.2-py3-none-any.whl
.
File metadata
- Download URL: robocorp_flet-0.4.2.2-py3-none-any.whl
- Upload date:
- Size: 42.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.0 CPython/3.9.13 Windows/10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ef55ba60adde98bb8c8256d1b08c291533604d59f744a1dfa0d8689c7fa4f7c3 |
|
MD5 | d984d044109765269d3c8dcc665e1a15 |
|
BLAKE2b-256 | 337044f4cd2a45c6696eb09a36fbef0df68351c3eb2baaaadcd1799937c0f402 |