flet-ex1/main.py
email@example.com bbbec90ce8 Initial app
2024-01-25 11:49:00 -06:00

7 lines
108 B
Python

import flet as ft
def main(page: ft.Page):
page.add(ft.Text(value="hello world"))
ft.app(target=main)