I created a tableView like this
\_ui.tableView = widget.newTableView { x = \_var.tableCenterX, y = \_var.tableCenterY, width = \_var.tableWidth, height = \_var.tableHeight, hideBackground = true, onRowRender = \_onRowRender, onRowTouch = \_onRowTouch, noLines = true, hideScrollBar = true, }
I found if I press one of the rows, the pressed row shows grey background color (which is inconsistent with my UI design).
Is this a default behavior?
How to disable this?