-
QuestionGiven this very simple example App (see code below). Code sampleimport flet as ft
def main(page: ft.Page):
t = ft.Text(value="Hello, world!", color="green")
page.controls.append(t)
page.update()
ft.app(target=main) Error messageNo response ------------------------------------------------------
|
Beta Was this translation helpful? Give feedback.
Answered by
DavMelchi
Apr 14, 2023
Replies: 1 comment 3 replies
-
Text has selectable property
|
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
JonasMedu
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Text has selectable property
t = ft.Text(value="Hello, world!", color="green",selectable=True )
https://flet.dev/docs/controls/text#selectable