scroll_area_documentation.py 479 B

12345678910111213141516171819202122
  1. from nicegui import ui
  2. from ..documentation_tools import text_demo
  3. def main_demo() -> None:
  4. with ui.row():
  5. with ui.card().classes('w-48 h-32'):
  6. with ui.scroll_area().classes('w-full'):
  7. ui.label('I will scroll... ' * 10)
  8. with ui.card().classes('w-48 h-32'):
  9. ui.label('I will not scroll... ' * 10)
  10. def more() -> None:
  11. @text_demo('placeholder', '''
  12. ...
  13. ''')
  14. async def placeholder():
  15. ...