Skip to content
Snippets Groups Projects
order.kv 2.53 KiB
Newer Older
Brady James Garvin's avatar
Brady James Garvin committed
BoxLayout:
    orientation: 'vertical'
    canvas.before:
        Color:
Brady James Garvin's avatar
Brady James Garvin committed
        Rectangle:
            pos: self.pos
            size: self.size
    Label:
Brady James Garvin's avatar
Brady James Garvin committed
        font_size: sp(48)
    GridLayout:
        rows: 3
        cols: 3
        Label:
            text: 'Drink'
            font_size: sp(20)
        Label:
            text: 'Main'
            font_size: sp(20)
        Label:
            text: 'Side'
            font_size: sp(20)
        GridLayout:
            rows: 3
            Button:
                text: 'Lemonade'
                on_press: app.drink_choices('Lemonade')
                font_size: sp(10)
            Button:
                text: 'Coca-Cola'
                font_size: sp(10)
                on_press: app.drink_choices('Coca-Cola')
            Button:
                text: 'Water'
                font_size: sp(10)
                on_press: app.drink_choices('Water')
        GridLayout:
            rows: 3
            Button:
                text: 'Burger'
                on_press: app.main_choices('Hamburger')
                font_size: sp(10)
            Button:
                text: 'Pizza'
                font_size: sp(10)
                on_press: app.main_choices('Pizza')
            Button:
                text: 'Ribs'
                font_size: sp(10)
                on_press:  app.main_choices('Ribs')
        GridLayout:
            rows: 3
            Button:
                text: 'Fries'
                on_press: app.side_choices('Fries')
                font_size: sp(10)
            Button:
                text: 'Salad'
                font_size: sp(10)
                on_press: app.side_choices('Salad')
            Button:
                text: 'Onion Rings'
                font_size: sp(10)
                on_press: app.side_choices('Onion Rings')
        BoxLayout:
            Label:
                text: 'Order Progress'
                font_size: sp(10)
            ProgressBar:
                id:progress
                value: 0
                min: 0
                max: 1000

Brady James Garvin's avatar
Brady James Garvin committed
    BoxLayout:
        orientation: 'horizontal'
        Label:
            text: 'Are you finished with your order? Check the box to confirm'
Brady James Garvin's avatar
Brady James Garvin committed
            size_hint: (None, 1.0)
            size: self.texture_size
            padding: (sp(12), 0)
Brady James Garvin's avatar
Brady James Garvin committed
    Label:
        text: f'Your drink is {app.drink_choice} and your main dish is {app.main_choice} and your side is {app.side_choice}' if switch.active else''
        font_size: sp(15)