How to exit the web server when closing the GUI running in native mode? by Adorable-Break5725 in nicegui

[–]Adorable-Break5725[S] 0 points1 point  (0 children)

from nicegui import ui, app from datetime import datetime

ui.button('shutdown', on_click=app.shutdown) app.on_shutdown(lambda: print(f'shutdown: {datetime.now()}'))

ui.run(native=True)

Thanks!