main.py 485 B

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