7 lines
108 B
Python
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) |