We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
8d11d74
The UI is now stoppable with ui.shutdown (see #83). Example:
ui.shutdown
from nicegui import ui ui.label('Your UI...') ui.button('Quit', on_click=ui.shutdown) ui.run(reload=False) print('Do something else...')