Added text to button in examples

This commit is contained in:
fruitbat 2017-05-01 06:54:22 +02:00
parent 7155f6e104
commit ead4655cc2
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ class CustomPopup(Popup):
class TestApp(App):
def build(self):
b = Button(on_press=self.show_popup)
b = Button(on_press=self.show_popup, text="Show Popup")
return b
def show_popup(self, b):