Is there any way to use multiple instances of the dash.page_container?
I want to structure multi-page app like:
The main page, would set a footer for all apps and contain the first dash.page_container
Page 2 would set a header, but the actual body would be loaded into a second instance of dash.page_container defined here.
See example 7 - It shows a header on each page, an a side bar on certain pages, but it’s similar to your use case. No need for multiple page_containers
thank you for the suggestion @AnnMarieW
I would still prefer to use nested page containers - mainly because this way the shared part of the UI (header) wouldn’t need to be re-created when changing sub-modules
I understand this could be achieved by using callbacks, but using nested page containers would be a much cleaner solution