create a centered button
To upload files, please first save the app
import streamlit as st
def create_card(title, content):
with st.container():
st.subheader(title)
st.write(content)
st.button("Dettagli", key=title)
# Uso
cols = columns(3)
for col in cols:
create_card("Card 1", "Contenuto della prima card")
Hi! I can help you with any questions about Streamlit and Python. What would you like to know?