Summary
I have a loaded image in my app, as a welcome logo, but it is⦠vibriting together with the scroll bar? I donāt know what is happening. It is the first time I encountered this issue. In fact, one month ago the app worked fine.
Steps to reproduce
Code snippet:
def welcome():
'''Shows the welcome messages to the application'''
st.image('logos/logo.png')
st.subheader('Welcome to ...')
st.write('')
# Welcome page
if menu == 'Welcome':
welcome()
Expected behavior:
The image should be shown along with the text in a static way.
Actual behavior:
Itās like if the right part of my app GUI was vibrating, but just for this āwelcome pageā , the other pages work according to expected.
- Streamlit version: 1.11.1
- Python version: 3.7.4
- OS version: Windows 10.0.19045
- Browser version: Edge 111.0.1661.54
(Edit)
Iāve observed that it usually happens when running the st.experimental_rerun() function, but sometimes it also happen when starting the app (both Streamlit Community and Streamlit local development environment)