spring-2026-is445-example / src /pages /layout_example.py
kxm86's picture
Create pages/layout_example.py
7e1d52d verified
Raw
History Blame Contribute Delete
501 Bytes
import streamlit as st
import time
# st.logo("")
c = st.container()
st.markdown("""
section
---
another
""")
st.divider()
col1, col2 = st.columns(2)
col1.write("Hi")
col2.write("there")
with col1:
st.write("This is col1")
with col2:
st.write("Another col2")
with col1:
st.write("again?")
"magic"
c.write("Writing into the container")
time.sleep(3)
st.write("At the end...")
c.write("At the top...")