Update app.py
Browse files
app.py
CHANGED
@@ -17,7 +17,7 @@ start_page = st.Page(
|
|
17 |
default=True,)
|
18 |
|
19 |
type_text_page = st.Page(
|
20 |
-
page="pages/
|
21 |
title="DEMO for text entry",
|
22 |
icon=":material/keyboard:",
|
23 |
default=False,)
|
@@ -52,6 +52,6 @@ about_page = st.Page(
|
|
52 |
#page = PAGES[selection]
|
53 |
|
54 |
# --- NAVIGATION SETUP ---
|
55 |
-
pg = st.navigation(pages=[
|
56 |
#pg = st.navigation({"Chapter_Index": [start_page], "Demo": [type_text_page, upload_file_page], "About": [about_page]}) # WITH SECTIONS
|
57 |
pg.run()
|
|
|
17 |
default=True,)
|
18 |
|
19 |
type_text_page = st.Page(
|
20 |
+
page="pages/type_text_v7.py",
|
21 |
title="DEMO for text entry",
|
22 |
icon=":material/keyboard:",
|
23 |
default=False,)
|
|
|
52 |
#page = PAGES[selection]
|
53 |
|
54 |
# --- NAVIGATION SETUP ---
|
55 |
+
pg = st.navigation(pages=[type_text_page, upload_file_page, about_page]) # WITHOUT SECTIONS
|
56 |
#pg = st.navigation({"Chapter_Index": [start_page], "Demo": [type_text_page, upload_file_page], "About": [about_page]}) # WITH SECTIONS
|
57 |
pg.run()
|