I am creating multiple disease prediction system with many tabs. I want to add a button or hyperlink navigate to another tabs in streamlit.
I want to navigate to diabete prediction tab when the user click on click here button or hyperlink.
I have tried Programmatically (e.g., st.change_page(“home”)) or
Using a button (e.g., st.button(page=”home”)) but it doesn’t work.
Is there any solution to navigate ?