From bbbec90ce878da1b6e49d79a50ba7d545186cca1 Mon Sep 17 00:00:00 2001 From: "email@example.com" Date: Thu, 25 Jan 2024 11:49:00 -0600 Subject: [PATCH] Initial app --- main.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 main.py diff --git a/main.py b/main.py new file mode 100644 index 0000000..60a34cc --- /dev/null +++ b/main.py @@ -0,0 +1,7 @@ +import flet as ft + + +def main(page: ft.Page): + page.add(ft.Text(value="hello world")) + +ft.app(target=main) \ No newline at end of file