Created
July 13, 2021 19:21
-
-
Save asaini/ba3884f22de89e3dca6634214b6ae72a to your computer and use it in GitHub Desktop.
Blog post 2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import streamlit as st | |
def update_first(): | |
st.session_state.second = st.session_state.first | |
def update_second(): | |
st.session_state.first = st.session_state.second | |
st.title('🪞 Mirrored Widgets using Session State') | |
st.text_input(label='Textbox 1', key='first', on_change=update_first) | |
st.text_input(label='Textbox 2', key='second', on_change=update_second) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment