Is it possible for code to detect whether the browser is on a phone or small display?
There is a table in our app which seen from mobile looks terrible. We would like to detect if mobile browser is active, and reorganize rows into cards that you can swipe down conveniently.
Is there a variable we can use in the code to know the environment the code is being executed on so we can tailor the UX to it?
from streamlit_javascript import st_javascript
from user_agents import parse
.....
main()
ua_string = st_javascript("""window.navigator.userAgent;""")
user_agent = parse(ua_string)
st.session_state.is_session_pc = user_agent.is_pc
st.info(st.session_state.is_session_pc)
user_agent.is_pc returns True if the session runs on a PC. I then used that to conditionally render some data or not if the User is not running from a PC.
Can also potentially help to prevent the execution of your Streamlit Apps by Bots or other automatic agents.
Thanks for stopping by! We use cookies to help us understand how you interact with our website.
By clicking “Accept all”, you consent to our use of cookies. For more information, please see our privacy policy.
Cookie settings
Strictly necessary cookies
These cookies are necessary for the website to function and cannot be switched off. They are usually only set in response to actions made by you which amount to a request for services, such as setting your privacy preferences, logging in or filling in forms.
Performance cookies
These cookies allow us to count visits and traffic sources so we can measure and improve the performance of our site. They help us understand how visitors move around the site and which pages are most frequently visited.
Functional cookies
These cookies are used to record your choices and settings, maintain your preferences over time and recognize you when you return to our website. These cookies help us to personalize our content for you and remember your preferences.
Targeting cookies
These cookies may be deployed to our site by our advertising partners to build a profile of your interest and provide you with content that is relevant to you, including showing you relevant ads on other websites.