I can't seem to bind my function to this certain button. I have tried this:
This is my function:
def callback(str):
print('he button <%s> is being pressed' % str)
and this is where i bind the function:
btn = Button(text="%s" % feedList[i]['message'])
btn.bind(on_press=callback(i))