-
QuestionHi, the same code runs correctly on flet 0.27.6 Code sampleimport flet as ft
def main(page: ft.Page):
page.add(ft.Text("Hello from Flet!"))
page.update()
ft.app(main) Error messageNo response ------------------------------------------------------
|
Beta Was this translation helpful? Give feedback.
Answered by
Brazi87
Aug 22, 2025
Replies: 1 comment 3 replies
-
i don't know what's happening. but you can try this code. import flet as ft
import logging
logging.basicConfig(level=logging.DEBUG)
logger = logging.getLogger(__name__)
def main(page: ft.Page):
logger.info("Flet app is starting...")
page.add(ft.Text("Hello from Flet!"))
logger.info("add Text component to the page")
page.update()
logger.info("update the page")
logger.info("call flet.app()")
ft.app(main) open terminal and execute if it's still print nothing on console , meybe your python is not installed properly. IDK , try and tell us what happen.. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
it is fixed in flet 0.70.0.dev5520.
thank you for your help