Ask the community or our support engineers for answers to questions.
I use the beta columns function to put 5 number_input components in one row:
Then it turn out that the width of number_input is too narrow, only 1 digit can be shown.
is there a way to increase the width of row ( you can see there is a lot of space in width) or disable the step button(+/-) in the number_input component?
You can set your Streamlit app to use wide mode with st.set_page_config(layout="wide").
It needs to be the first streamlit call you make (i.e. first thing you do after importing streamlit). This will allow you to make use of the whole screen.