Replies: 2 comments 5 replies
-
There is a more general issue here: How to debug flet applications. If there is some mistake in the layout, it seems like flet just gives up and displays nothing, also no error message. Is there a way to get debug information? |
Beta Was this translation helpful? Give feedback.
3 replies
-
This example could be helpful: https://github.com/flet-dev/examples/tree/main/python/community/responsive_menu_layout |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
As shown in the ToDoApp tutorial, I would like to create a class representing the main application (window). This application should have a side bar containing a
NavigationRail
. The problem: When theNavigationRail
is returned by thebuild
method of theApp
class (rather than added to thepage
directly), it is not displayed.(In general it would be great to have a code example or template for how to implement such a common app window layout - sidebar and main window area changing depending on sidebar selection - with flet.)
Beta Was this translation helpful? Give feedback.
All reactions