Hello World 在 kivy

以下程式碼說明如何在 kivy 中製作 hello world 應用程式。要在 ios 和 android 中執行此應用程式,請將其另存為 main.py 並使用 buildozer。

from kivy.app import App
from kivy.uix.label import Label
from kivy.lang import Builder

Builder.load_string('''
<SimpleLabel>:
    text: 'Hello World'
''')

class SimpleLabel(Label):
    pass

class SampleApp(App):
    def build(self):
        return SimpleLabel()

if __name__ == "__main__":
    SampleApp().run()