Files
flowers/client/Daisy.py
T

17 lines
267 B
Python
Raw Normal View History

2025-03-25 20:32:26 +00:00
import kivy
kivy.require('1.0.6') # replace with your current kivy version !
from kivy.app import App
from kivy.uix.label import Label
class MyApp(App):
def build(self):
return Label(text='Hello world')
if __name__ == '__main__':
MyApp().run()