Hello everyone, I am trying to create a multipage structure as follows:
├── pages/
│ ├── page_1.py
└── your_homepage.py
However, when I navigate to localhost/page_1 and refresh the page, it keeps loading indefinitely and nothing appears. How can I fix this? Thank you, everyone.
Same for me. I have a multipage app created with an old version of navigation (st.page_link and st.switch_page) that works well. When I updated Streamlit to 1.36.0, I encountered your same issue. So I downgraded Streamlit to 1.35.0, and the page refresh now works (it’s important if your app has some authentication method)