Update app.py
Browse files
app.py
CHANGED
@@ -25,7 +25,11 @@ def on_close():
|
|
25 |
|
26 |
def open_modal():
|
27 |
st.modal("User Guide", "Hello world")
|
|
|
|
|
|
|
28 |
|
|
|
29 |
|
30 |
#######
|
31 |
|
@@ -33,7 +37,7 @@ import pandas as pd
|
|
33 |
from io import StringIO
|
34 |
with st.sidebar:
|
35 |
|
36 |
-
st.button("User Description",
|
37 |
|
38 |
st.header("Set Tools and Option. ")
|
39 |
|
|
|
25 |
|
26 |
def open_modal():
|
27 |
st.modal("User Guide", "Hello world")
|
28 |
+
# Define a callback function that will be called when the button is clicked
|
29 |
+
#def open_modal():
|
30 |
+
# st.modal("User Guide", app_user_desc())
|
31 |
|
32 |
+
# Create a button that opens the modal
|
33 |
|
34 |
#######
|
35 |
|
|
|
37 |
from io import StringIO
|
38 |
with st.sidebar:
|
39 |
|
40 |
+
st.button("User Description", open_modal)
|
41 |
|
42 |
st.header("Set Tools and Option. ")
|
43 |
|