Initial app

This commit is contained in:
email@example.com 2024-01-25 11:49:00 -06:00
parent c344cc030c
commit bbbec90ce8

7
main.py Normal file
View File

@ -0,0 +1,7 @@
import flet as ft
def main(page: ft.Page):
page.add(ft.Text(value="hello world"))
ft.app(target=main)