Code
entfernen
Code: Select all
from flet import *
def main(page: Page):
page.controls = [
Text("hello world"),
Text("hello world")
]
page.update()
app(main)
Ich habe versucht, nach einem bestimmten Attribut zu suchen, war aber verwirrt
Code: Select all
from flet import *
def main(page: Page):
page.controls = [
Text("hello world"),
Text("hello world")
]
page.update()
app(main)