Custom st.form_submit_button

Is it possible to create a custom submit button to use with vanilla streamlit forms? or will i have to create a custom form component to wrap the inputs and buttons?

I tried to add a custom component button with type submit but st.form doesn’t care.

As far as I know, if you want to create a custom form submission button, you’ll need the whole form to be a custom component. You could do something different with a fragment instead of a form is you wanted to less the custom development burden, though.

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.