I am trying to get a image to position itself at the bottom right hand corner of the screen with pos_hint but it always leaves a gap between the bottom of the image and the screen, im still very new to kivy and have looked around for a solution but cant find anything that helps, thanks in advance
class Building(Image):
def __init__(self, **kwargs):
super().__init__(**kwargs)
self.source = 'Building.png'
self.size_hint = 0.4,1
self.pos_hint = {'x':0.7, 'y':0.1}
This is where i call it
self.build = Building()
self.add_widget(self.build)