Browse Source

Update 'README.md'

天问 9 months ago
parent
commit
62bef324ee
1 changed files with 19 additions and 1 deletions
  1. 19 1
      README.md

+ 19 - 1
README.md

@@ -1,3 +1,21 @@
 # kivy
 # kivy
 
 
-UI框架
+UI框架
+
+## Develop
+
+```
+# pip install kivy
+
+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()
+
+```