building-streamlit-dashboards
Installation
SKILL.md
Streamlit dashboards
Compose metrics, charts, and data into clean dashboard layouts.
Cards with borders
Use border=True to create visual cards. Supported on st.container, st.metric, st.columns, and st.form:
# Container card
with st.container(border=True):
st.subheader("Sales Overview")
st.line_chart(sales_data)
# Metric card
st.metric("Revenue", "$1.2M", "+12%", border=True)