step2 abgeschlossen

This commit is contained in:
Patrick vom Hagen
2024-02-28 15:35:35 +01:00
parent 0632b1a7e1
commit a5348abe89
8 changed files with 367 additions and 34 deletions

View File

@@ -1,15 +1,11 @@
from kivy.app import App
from kivy.uix.gridlayout import GridLayout
from kivy.uix.image import Image
from kivy.uix.label import Label
class ImportGUI(App):
def build(self):
self.window = GridLayout()
self.window.cols = 3
self.window.add_widget(Image(source="add.png"))
return self.window
root_widget = Label(text='Hello')
return root_widget
if __name__ == '__main__':