eagle0504's picture
app updated
746d2f1

A newer version of the Streamlit SDK is available: 1.48.1

Upgrade
metadata
title: Navigation and pages
slug: /develop/api-reference/navigation

Navigation and pages

screenshot

Page link

Display a link to another page in a multipage app.

st.page_link("app.py", label="Home", icon="๐Ÿ ")
st.page_link("pages/profile.py", label="Profile")

Switch page

Programmatically navigates to a specified page.

st.switch_page("pages/my_page.py")