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
You can use
Button:
id:mybutton background_down: "bgdown.png" background_normal: "bg.png"