Skip to content
Snippets Groups Projects
Select Git revision
  • 9f8dbd49d0673f6d41ebee18a30221c569cfbcd6
  • main default protected
  • dependabot/go_modules/github.com/gin-contrib/cors-1.6.0
  • master
  • v1.3.2
  • v1.3.1
  • v1.3.0
  • v1.2.0
  • v1.1.1
  • v1.1.0
  • v1.0.3
  • v1.0.2
  • v1.0.1
  • v1.0.0
14 results

index.html

Blame
  • example2.kv 780 B
    BoxLayout:
        orientation: 'vertical'
        BoxLayout:
            id: fields
            orientation: 'vertical'
            size_hint: (1.0, 6.0)
        BoxLayout:
            orientation: 'horizontal'
            Button:
                text: 'Add Field'
                font_size: sp(24)
                on_press: app.add_field()
            Button:
                text: 'Remove Field'
                font_size: sp(24)
                on_press: app.remove_field()
        Label:
            id: result
            text: f'Smallest Positive: {app.smallest_positive}'
            font_size: sp(24)
    
    <Field>:
        orientation: 'horizontal'
        Label:
            text: root.label_text
            font_size: sp(24)
        TextInput:
            id: input
            multiline: False
            write_tab: False
            font_size: sp(24)
            on_text: app.update()