Allow fullscreen content for Streamlit Components

Hello everyone,

In 0.64 highlights(Version 0.64.0 ā€¢ Deprecation warning for st.file_uploader decoding) I saw ā€œfullscreen for componentsā€, but I donā€™t find any info in the documentation, neither for components or Streamlit at all.

Any guidelines about this? Iā€™m trying to make some rendering of HTMLS and iframe URLS. Thanks folks! :space_invader: :vulcan_salute: :v:

I believe the expected fix just added that attribute to the whitelist of properties allowed inside of the iframe. So if the HTML code you have specifies fullscreen, it should work. But you specify it inside of HTML, not inside Python.

Ok. Thanks Great. Fullscreen in Folium works like a charm.

from folium.plugins import Fullscreen
...
Fullscreen().add_to(map)
2 Likes