kivy/examples/demo/showcase/showcase.kv

52 lines
1.1 KiB
Plaintext
Raw Normal View History

#:kivy 1.0
#:import kivy kivy
<Showcase>:
content: content
canvas:
Color:
rgb: 1, 1, 1
Rectangle:
source: 'data/images/background.jpg'
size: self.size
BoxLayout:
orientation: 'vertical'
BoxLayout:
padding: 10
spacing: 10
size_hint: 1, None
pos_hint: {'top': 1}
height: 44
Image:
size_hint: None, None
size: 24, 24
source: 'data/logo/kivy-icon-24.png'
Label:
height: 24
text_size: self.size
color: (1, 1, 1, .8)
text: 'Kivy %s - Showcase' % kivy.__version__
FloatLayout:
id: content
2011-04-21 22:52:55 +00:00
<KivyImageScatter>:
Image:
source: 'data/logo/kivy-icon-512.png'
<ButtonsScatter>:
canvas:
Color:
rgba: .5, .5, .5, .5
Rectangle:
size: self.size
BoxLayout:
size: root.size
padding: 40
Button:
text: 'Hello'
Button:
text: 'World'