In Kivy, is there a way to pass image object as a button background, instead of image file name?
button.background_normal property accepts only strings. I w
button.background_normal
In addition to toto_tico's answer, you can locate the image at the center of the button as:
Button: id: myButton Image: source: "./buttonImage.PNG" center_x: self.parent.center_x center_y: self.parent.center_y