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