Hello everyone,
I am looking for a way to add a tab to an existaing tab tuple.
For example :
tabs = st.tabs([“Selection”, “results”])
And I would like to add a new tab like :
tabs.append([‘newtab’])
to have tabs updated and equivalent to :
tabs = st.tabs([“Selection”, “results”, “newtab”])
Any idea ?
Thanks.
David