Skip to content

Instantly share code, notes, and snippets.

@olymk2
Forked from tshirtman/hide.py
Created April 6, 2015 15:10
Show Gist options
  • Save olymk2/4d50216ecb3f866094e5 to your computer and use it in GitHub Desktop.
Save olymk2/4d50216ecb3f866094e5 to your computer and use it in GitHub Desktop.
from kivy.base import runTouchApp
from kivy.lang import Builder
KV = '''
#:import Animation kivy.animation.Animation
FloatLayout:
BoxLayout:
id: box
x:0
orientation: 'vertical'
size_hint: None, None
canvas:
Color:
rgb: (1,0,0)
Rectangle:
pos:0,0
size:self.size
Button:
text: 'push me'
on_press:
self.parent.x -= self.parent.width
'''
runTouchApp(Builder.load_string(KV))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment