I feel like I have a good portion of the basic functionality of what I need so far include reading the db, updating db values, calling crossway's API for verses and parsing that payload. Styling leaves a lot to be desired still.

This commit is contained in:
Norm Rasmussen
2024-10-04 19:50:45 -04:00
commit d36add7f35
17 changed files with 217 additions and 0 deletions

13
test.py Normal file
View File

@ -0,0 +1,13 @@
from nicegui import ui
with ui.grid():
data = ui.button("Text")
#, on_click=lambda: show_element(data))
def show_element(data):
with ui.row():
ui.input(label="Add Text")
data.on_click(lambda: show_element(data))
ui.run()