scroll_area_documentation.py 478 B

123456789101112131415161718192021
  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-32 h-32'):
  6. ui.label('I will not scroll...\n' * 5)
  7. with ui.card().classes('w-32 h-32'):
  8. with ui.scroll_area().classes('w-full'):
  9. ui.label('I will scroll...\n' * 5)
  10. def more() -> None:
  11. @text_demo('placeholder', '''
  12. ...
  13. ''')
  14. async def placeholder():
  15. ...