freechat/freechat-client/share/kivy-examples/widgets/scatter.py
2020-03-16 19:36:10 -07:00

17 lines
266 B
Python

from kivy.uix.scatter import Scatter
from kivy.app import App
class MyScatter(Scatter):
pass
class ScatterApp(App):
def build(self):
s = MyScatter(size=(400, 400), size_hint=(None, None))
s.top = 500
return s
ScatterApp().run()