UI框架

天问 62bef324ee Update 'README.md' 1 month ago
README.md 62bef324ee Update 'README.md' 1 month ago

README.md

kivy

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()