test-kivy-app/kivy_venv/share/kivy-examples/guide/firstwidget/2_print_touch.py
2024-09-15 15:12:16 +03:00

17 lines
293 B
Python

from kivy.app import App
from kivy.uix.widget import Widget
class MyPaintWidget(Widget):
def on_touch_down(self, touch):
print(touch)
class MyPaintApp(App):
def build(self):
return MyPaintWidget()
if __name__ == '__main__':
MyPaintApp().run()