main.py 503 B

123456789101112131415161718
  1. #!/usr/bin/env python3
  2. import trello
  3. from nicegui import ui
  4. with ui.row():
  5. with trello.column('Next'):
  6. trello.card('Improve Documentation')
  7. trello.card('Simplify Layouting')
  8. trello.card('Provide Deployment')
  9. with trello.column('Doing'):
  10. trello.card('Release Standalone-Mode')
  11. with trello.column('Done'):
  12. trello.card('Invent NiceGUI')
  13. trello.card('Test in own Projects')
  14. trello.card('Publish as Open Source')
  15. ui.run(standalone=True)