Изучаю библиотек kivy. Необходимо что бы пи нажатии на кнопку 'Класс!!!!!!!' появилась кнопка 'Топ!!!!!' Вот это не работает
from kivy.app import App
from kivy.uix.button import Button
class MyApp(App):
def build(self):
button = Button(text= 'Класс!!!!!!!',
size_hint = (.1, .2),
pos_hint = {'center_x': .5, 'center_y': .8})
button.bind(on_press= self.mi)
return button
def mi(self, instance):
button = Button(text='Топ!!!!!',
size_hint=(1, .2),
pos_hint={'center_x': .1, 'center_y': .2})
return button
if __name__ == '__main__':
MyApp().run()