🐱 App logo
Submitted by Zachary Blackwood
Summary
Add a logo on top of the navigation bar of a multipage app
Functions
add_logo
Add a logo (from logo_url) on the top of the navigation page of a multipage app. Taken from the Streamlit forum The url can either be a url to the image, or a local path to the image.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
logo_url |
str
|
URL/local path of the logo |
required |
Source code in src/streamlit_extras/app_logo/__init__.py
Import:
- You should add this to the top of your .py file
Examples
example
def example():
if st.checkbox("Use url", value=True):
add_logo("http://placekitten.com/120/120")
else:
add_logo("gallery/kitty.jpeg", height=300)
st.write("👈 Check out the cat in the nav-bar!")