123456789101112131415161718192021222324252627282930313233 |
- body:
- - type: markdown
- attributes:
- value: |
- Thanks for your interest in NiceGUI! 🚀
- Please answer the following questions to describe your idea or feature request. 🙏
- - type: textarea
- id: content
- attributes:
- label: Description
- description: |
- What is your idea or feature request?
- validations:
- required: true
- - type: textarea
- id: content
- attributes:
- label: Contribution
- description: |
- How will the NiceGUI community benefit from it?
- validations:
- required: true
- - type: textarea
- id: example
- attributes:
- label: Example Code
- description: |
- How will the new feature be used?
- placeholder: |
- with ui.tic_tac_toe() as game:
- game.make_move('X', (1, 1))
- render: python
|