texture=self.image.texture)
self.stop_button = Button(
- text='Quit', size=(100, 50),
- pos=((1026 - 100) / 2, 650))
+ text='Quit', size=(200, 40),
+ pos=((1026 - 200) / 2 - 100, 100))
self.stop_button.bind(on_press=self.app.stop_app)
self.start_button = Button(
- text=self.START, size=(500, 50),
- pos=((1026 - 250) / 2, 600))
+ text=self.START, size=(200, 40),
+ pos=((1026 - 200) / 2 + 100, 100))
self.start_button.bind(on_press=self.app.start_game)
self.add_widget(self.stop_button)
self.add_widget(self.start_button)