File size: 935 Bytes
af30a30
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import streamlit as st

# Initialize session state to track the active tab
if 'active_tab' not in st.session_state:
    st.session_state.active_tab = 0  # Set default tab (0 for first tab)

# Create tabs using st.radio or st.selectbox
tab_options = ['Tab 1', 'Tab 2', 'Tab 3']
selected_tab = st.radio('Select a tab', tab_options, index=st.session_state.active_tab)
# Some condition to trigger the tab change (for example, based on user input or action)
def some_condition():
    # Define your condition, for example, a button press or other condition
    return st.button('Switch to Tab 2')
# Conditionally switch tabs based on a condition
if some_condition():
    st.session_state.active_tab = 1  # Switch to Tab 2 (index 1)

# Render content based on the selected tab
if selected_tab == 'Tab 1':
    st.write("You are on Tab 1")
elif selected_tab == 'Tab 2':
    st.write("You are on Tab 2")
else:
    st.write("You are on Tab 3")