Hello,
Very nice exaple, thank you for helping out!
Cheers
You received this message because you are subscribed to a topic in the Google Groups "Kivy users support" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/kivy-users/ZzQg-xxKnVc/unsubscribe?hl=en.
To unsubscribe from this group and all its topics, send an email to kivy-users+...@googlegroups.com.
# let's rowspan 2 Widget: Button: y: placeholder1.y x: self.parent.x width: self.parent.width height: self.parent.height + placeholder1.height text: '=' on_press: app.calc(calc)
button = Button(text="=")
widget = Widget()
widget.add_widget(button)
button.x = button.parent.x
button.y = button.parent.y
button.height = button.parent.height
button.width = button.parent.width