open_documentation.py 307 B

12345678910
  1. from nicegui import ui
  2. def main_demo() -> None:
  3. @ui.page('/yet_another_page')
  4. def yet_another_page():
  5. ui.label('Welcome to yet another page')
  6. ui.button('RETURN', on_click=lambda: ui.open('documentation#open'))
  7. ui.button('REDIRECT', on_click=lambda: ui.open(yet_another_page))