From ac0fdd5cd45a83ec42d9da3b57deaca18b1c2e17 Mon Sep 17 00:00:00 2001 From: oloturia Date: Thu, 17 Dec 2020 03:05:31 +0100 Subject: [PATCH] removed android version that wasn't working, created android branch --- main.py | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 main.py diff --git a/main.py b/main.py deleted file mode 100644 index 76f5fef..0000000 --- a/main.py +++ /dev/null @@ -1,26 +0,0 @@ -import kivy -from kivy.app import App -from kivy.uix.image import Image -from kivy.uix.button import Button -from kivy.uix.boxlayout import BoxLayout - -from randstrip import createStrip - -class strip_Layout(App): - img = Image(source="android.png") - - def build(self): - layout = BoxLayout(orientation="vertical") - newStrip_Button = Button(text="New Strip", size_hint=(1,.3)) - newStrip_Button.bind(on_press=self.newStrip) - layout.add_widget(self.img) - layout.add_widget(newStrip_Button) - return layout - - def newStrip(self,instance): - createStrip("android",30) - self.img.reload() - -if __name__=="__main__": - app = strip_Layout() - app.run()