streamlit-navigation-bar
streamlit-navigation-bar copied to clipboard
Is it possible to make stStatusWidget visible?
Checklist
- [X] I have read the documentation at the Wiki.
Description
I am trying to keep the default status widget visible and integrated within the navbar. I have tried this running this code after initiating the navbar, but it does not work:
st.markdown('''
<style>
div[class="stStatusWidget"] {
visibility: visible;
}
</style>
''', unsafe_allow_html=True)
Is there a workaround?