with st.container(key="btn-container-test"):
continueBtn =st.form_submit_button("login", type="primary")
if continueBtn:
custom_function1()
some code
custom_function2()
what I’m looking for is to set a progressbar when i click continueBtn btn, and the progressbar should end at the same time of the code inside the continueBtn btn.