test-kivy-app/main.py
2024-09-15 15:12:16 +03:00

8 lines
176 B
Python

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()