mirror of
https://gitlab.com/oloturia/fumcaso.git
synced 2025-01-07 22:17:18 +01:00
first working version
This commit is contained in:
parent
ce52d1b06c
commit
ece584daef
1 changed files with 26 additions and 0 deletions
26
main.py
Normal file
26
main.py
Normal file
|
@ -0,0 +1,26 @@
|
|||
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.png",30)
|
||||
self.img.reload()
|
||||
|
||||
if __name__=="__main__":
|
||||
app = strip_Layout()
|
||||
app.run()
|
Loading…
Reference in a new issue