Ahah nope sorry no hack for now maybe in the future…
You could still get away with the “Hide with checkbox” though:
import streamlit as st
with st.beta_expander("Hi Charly"):
if st.checkbox("Fake expand"):
st.write("Hello world")
Fanilo