James McCool
commited on
Commit
·
06223ba
1
Parent(s):
78cc931
Enhance view selection info text for better user understanding
Browse filesImprove the radio button info text to provide clearer guidance on the difference between Simple and Advanced views, highlighting their optimal use cases for mobile and desktop users. The updated description helps users make more informed choices about which view to select based on their device and information needs.
app.py
CHANGED
@@ -125,7 +125,7 @@ with tab1:
|
|
125 |
|
126 |
with col1:
|
127 |
view_var2 = st.radio("View Type", ("Simple", "Advanced"), key='view_var2')
|
128 |
-
st.info("Simple view is better for mobile")
|
129 |
|
130 |
with col2:
|
131 |
sport_var2 = st.radio("Sport", ('NFL', 'NBA'), key='sport_var2')
|
|
|
125 |
|
126 |
with col1:
|
127 |
view_var2 = st.radio("View Type", ("Simple", "Advanced"), key='view_var2')
|
128 |
+
st.info("Simple view is better for mobile and shows just the most valuable stats, Advanced view is better for desktop and shows all stats and thresholds")
|
129 |
|
130 |
with col2:
|
131 |
sport_var2 = st.radio("Sport", ('NFL', 'NBA'), key='sport_var2')
|