#:kivy 1.0 #:import kivy kivy : 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 : Image: source: 'data/logo/kivy-icon-512.png' : canvas: Color: rgba: .5, .5, .5, .5 Rectangle: size: self.size BoxLayout: size: root.size padding: 40 Button: text: 'Hello' Button: text: 'World'