freechat/freechat-client/share/kivy-examples/guide/firstwidget/2_print_touch.py
2020-03-16 19:36:10 -07:00

17 lines
277 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()