Can anyone explain to me how you update widgets in kivy? I have a code sample here:
class Game(Widget): def __init__(self, **kwargs): super(Game, self).__in
You need to bind actions to the buttons (the documentation has a few examples https://kivy.org/docs/api-kivy.uix.button.html).
i.e.
button = Button(text='Play', font_size='20') button.bind(on_press = do_something_you_want)