open_documentation.py 345 B

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