test-kivy-app/kivy_venv/share/kivy-examples/guide/firstwidget/1_skeleton.py

16 lines
244 B
Python
Raw Permalink Normal View History

2024-09-15 12:12:16 +00:00
from kivy.app import App
from kivy.uix.widget import Widget
class MyPaintWidget(Widget):
pass
class MyPaintApp(App):
def build(self):
return MyPaintWidget()
if __name__ == '__main__':
MyPaintApp().run()