def build(self):
root = Widget()
b1 = Button(pos=(0, 0),
# background_color=(226, 13, 13, 1),
size=(100, 50),
text="Click Me")
root.add_widget(b1)
return root