example_pages.py 365 B

12345678910111213141516
  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')