As said in the title, I just want to change the text color and the background color of the selected cell in my custom TableView. No problem for the background color but the text color keep his none selected color …
Here is my code inside my tableview_cell_for_row def :
selected_cell = ui.View()
selected_cell.background_color = (.25, .51, 1.0, 1)
selected_cell.text_color = (1, 1, 1, 1.0)
cell.selected_background_view = selected_cell
Do you see something wrong or is it simply impossible ?
