After clicking stop button, some requests cannot be executed, including switching pages, submit st.text_input

Hi @king007

Using st.stop() would cause Streamlit to not run any statements as it stops execution immediately.

More info on the Docs page:

If you’d like to have the app continue running then please replace st.stop() with a warning message instead such as using st.warning().

Hope this helps!