Hey
I am trying to make my first app in kivy so i copied a basic button code.
class TestApp(App):
def build(self):
btn = Button(text="Press me")
return btn
if name == 'main':
TestApp().run()
however the button doesnt seem to be pressed when i click it with my mouse.
any suggestions how to fix this?
thanks