example_pages.py 333 B

1234567891011121314151617
  1. import theme
  2. from message import message
  3. from nicegui import ui
  4. def create() -> None:
  5. @ui.page('/a')
  6. def example_page_a():
  7. with theme.frame('- Example A -'):
  8. message('Example A')
  9. @ui.page('/b')
  10. def example_page_b():
  11. with theme.frame('- Example B -'):
  12. message('Example B')