Width customizer for Streamlit Apps
As of now, you can only change your Streamlit app’s layout width from narrow (default) to wide. You can switch to the wide mode persistently by adding this code at the top of your streamlit_app.py file: # Use the full page instead of a narrow central column st.set_page_config(layout=”wide”) Now, wouldn’t it be nice to have custom layout widths? Wouldn’t it be cool to be able to change these custom widths on the fly? Wouldn’t it be even sweeter to change […]
Read more