1234567891011121314151617181920 |
- import theme
- from nicegui import APIRouter, ui
- router = APIRouter(prefix='/c')
- @router.page('/')
- def example_page():
- with theme.frame('- Example C -'):
- with ui.column().classes('items-center'):
- ui.label('Example C').classes('text-h4 text-grey-8')
- for i in range(1, 4):
- ui.link(f'Item {i}', f'/c/items/{i}').classes('text-xl text-grey-8')
- @router.page('/items/{id}')
- def item(id: str):
- with theme.frame(f'- Example C{id} -'):
- ui.label(f'Item #{id}').classes('text-h4 text-grey-8')
|