example_pages.py 517 B

123456789101112131415161718192021
  1. import theme
  2. from nicegui import ui
  3. def create() -> None:
  4. @ui.page('/a')
  5. def example_page():
  6. with theme.frame('- Example A -'):
  7. ui.label('Example A').classes('text-h4 text-grey-8')
  8. @ui.page('/b')
  9. def example_page():
  10. with theme.frame('- Example B -'):
  11. ui.label('Example B').classes('text-h4 text-grey-8')
  12. @ui.page('/c')
  13. def example_page():
  14. with theme.frame('- Example C -'):
  15. ui.label('Example C').classes('text-h4 text-grey-8')