Hi,
Iâm trying to use
with st.expander(label):
I wonder if the label can be made multi-line? I tried to use " + â\nâ " in the creation of label but it doesnât work. Moreover, the spaces in label gets ignored when shown. For instance, label might be:
label = âthis is my labelâ + " " + âthis dataframe has n rowsâ
And all those large spaces gets shown as a single space it seems. So I wonder if there are ways to format the label in st.expander() that allows for either multi-line string, or additional spacing within the string.
Thanks