File size: 333 Bytes
9de9cb0
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import streamlit as st

name = st.text_input("Name")
if name:
    st.write("Hello,", name)

st.date_input("date")

st.slider("slider", 0, 100, 50)

with st.sidebar:
    st.title("Color theme sample")
    st.markdown("This Streamlit app is served with `.streamlit/config.toml` to control the color theme with its `[theme]` section!")