I am trying to set the color for a right ButtonItem in a view called 'table.' No matter what I set tint_color to, it does not seem to have an effect. I have tried different color names and hex, but the button title always shows in grey. Any idea what I'm doing wrong?
My example code:
doneButton = ui.ButtonItem(title='Done', enabled=True, tint_color='red')
tableRightButtons = [doneButton]
table.right_button_items = tableRightButtons