Get help from the marimo community

e
eugene
Offline, last seen 3 days ago
Joined November 25, 2024
If I want to get all marimo notebooks recursively inside a directory, what algorithm can be both robust and efficient?
4 comments
A
M
e
I'm trying to implement an app and a crucial part of it composed of something like below,
Plain Text
get_state, set_state = mo.state(False)

def wait_for_switch() -> bool:
    while True:
        if get_state():
            return True

switch = mo.ui.switch(on_change=set_state)

then calling
Plain Text
wait_for_switch()


But when switching, the loop continues
Is there a way to terminate this while loop with switch?
2 comments
e
M