Restore Checkbox's Last State in Multi-Pages

Hi,

How to make checkbox remember and restore last saved value (True/False) in Streamlit Multi-Pages?

My case is like below.
The checkbox starts as False. When a user clicks the checkbox, the value changes to True (or False if it’s clicked 2 times). Then the user goes to other pages. When the user came back, the value stood as True (or False if it’s clicked 2 times before the user went to other pages).

I have tried the solution given in Session state issue with st.checkbox - #2 by snehankekre but the default state of the checkbox is True (which is not what I wanted in the first place).

Thanks.

1 Like

Hey @Gedanggoreng,

Can you share a code snippet that shows what you’ve implemented so far? That way we can make suggestions on what to try next.