Tip
Check out our tutorial to learn about building custom, dynamic menus with st.page_link.
st.page_link
Display a link to another page in a multipage app or to an external page.
If another page in a multipage app is specified, clicking st.page_link stops the current page execution and runs the specified page as if the user clicked on it in the sidebar navigation.
If an external page is specified, clicking st.page_link opens a new tab to the specified page. The current script run will continue if not complete.
| Function signature[source] | |
|---|---|
st.page_link(page, *, label=None, icon=None, help=None, disabled=False, use_container_width=None) | |
| Parameters | |
page (str) | |
label (str) | The label for the page link. Labels are required for external pages. Labels can optionally contain Markdown and supports the following elements: Bold, Italics, Strikethroughs, Inline Code, and Emojis. This also supports:
Unsupported elements are unwrapped so only their children (text contents) render. Display unsupported elements as literal characters by backslash-escaping them. E.g. 1\. Not an ordered list. |
icon (str, None) | An optional emoji or icon to display next to the button label. If icon is None (default), no icon is displayed. If icon is a string, the following options are valid:
|
help (str) | An optional tooltip that gets displayed when the link is hovered over. |
disabled (bool) | An optional boolean, which disables the page link if set to True. The default is False. |
use_container_width (bool) | An optional boolean, which makes the link stretch its width to match the parent container. The default is True for page links in the sidebar, and False for those in the main app. |
Example
Consider the following example given this file structure:
PythonPythonThe default navigation is shown here for comparison, but you can hide the default navigation using the client.showSidebarNavigation configuration option. This allows you to create custom, dynamic navigation menus for your apps!
Still have questions?
Our forums are full of helpful information and Streamlit experts.
