26
loading...
This website collects cookies to deliver better user experience
from kivy.app import App
from kivy.uix.button import Button
from kivy.uix.label import Label
from kivy.uix.boxlayout import BoxLayout
from kivy.app import App
from kivy.uix.button import Button
class ButtonApp(App):
def build(self):
return Button(text = "my-first-button")
if __name__ == "__main__":
ButtonApp().run()