I have restructured my app using the new st.Page & st.Navigation set-up in 1.36.0 and want to know what is the best approach/practice to accomplish the following:
Currently I have 2 pages in my navigation “View documents” (view_documents.py) and “Upload documents” (upload_input_documents.py).
I want to hide “Upload documents” from the navigation and integrate it into “View documents” by adding a button that redirects to “Upload documents” that passes along a GET parameter.
Thanks Faltawer for your proposed solution. That will definitely work but to keep things more logical and structured I would ideally have it in separate files.
I found with st-pages modules there is a concept of “hidden” pages that could work but ideally I stick with the new native st.Page & st.Navigation way. Is there a way to define a new page without making it a part of the navigation structure?