Extra-Streamlit-Components icon indicating copy to clipboard operation
Extra-Streamlit-Components copied to clipboard

An all in one place, to find complex or just not available components by default on streamlit.

Results 23 Extra-Streamlit-Components issues
Sort by recently updated
recently updated
newest added

the following code ``` import streamlit as st import extra_streamlit_components as stx st.write("# Cookie Manager") @st.cache_resource def get_manager(): return stx.CookieManager() cookie_manager = get_manager() st.subheader("All Cookies:") cookies = cookie_manager.get_all() st.write(cookies) c1,...

Trying the cookie example from the repo homepage. Streamlit raised the issue: ``` streamlit.errors.DuplicateWidgetID: There are multiple widgets with the same `key='init'` ``` My code doesn't have any widgets with...