Apps stuck at startup #194
Unanswered
teamunicycle
asked this question in
Q&A
Replies: 2 comments 1 reply
-
Run this program with log enabled and let me know what you got: import logging
import flet
from flet import Page, Text
logging.basicConfig(level=logging.DEBUG)
def main(page: Page):
page.title = "MyApp"
page.add(Text("Hello!"))
flet.app(target=main, view=flet.FLET_APP) |
Beta Was this translation helpful? Give feedback.
1 reply
-
I'm facing the same issue. I just pasted code for the example of data tables but changed view to ft.WEB_BROWSER and it's stuck on the loading flet screen. If the app is run without the browser, it works fine. ::edit:: |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
On a Windows 10 PC with the default view and the web browser view, even the most basic Hello World hangs, with just a loading animation. It does work on another PC I have, so I'm sure there is something about my PC, but I'm not sure how to go about troubleshooting.
Can anyone suggest a cause, or steps I might take?
Beta Was this translation helpful? Give feedback.
All reactions