13 lines
223 B
Python
13 lines
223 B
Python
from kivy.app import App
|
|
from kivy.uix.label import Label
|
|
|
|
|
|
class ImportGUI(App):
|
|
def build(self):
|
|
root_widget = Label(text='Hello')
|
|
return root_widget
|
|
|
|
|
|
if __name__ == '__main__':
|
|
ImportGUI().run()
|