test-kivy-app/main.py

8 lines
176 B
Python
Raw Normal View History

2024-09-15 12:12:16 +00:00
from kivymd.app import App
from kivymd.uix.button import Button
class MyApp(App):
def build(self):
return Button(text="Meow world", halign="center")
MyApp().run()