[TIMOB-28237] iOS: TableViewRow displays incorrect background upon press
| GitHub Issue | n/a |
|---|---|
| Type | Bug |
| Priority | Medium |
| Status | Open |
| Resolution | Unresolved |
| Affected Version/s | n/a |
| Fix Version/s | n/a |
| Components | iOS |
| Labels | n/a |
| Reporter | Gary Mathews |
| Assignee | Gary Mathews |
| Created | 2020-11-09T17:35:08.000+0000 |
| Updated | 2020-11-09T17:35:24.000+0000 |
Description
- Pressing on a
TableViewRow results in a incorrect row color.
*TEST*
const win = Ti.UI.createWindow({ backgroundColor: 'gray' });
const row = Ti.UI.createTableViewRow({
height: 80,
title: 'Row should not dull upon press',
backgroundColor: 'blue'
});
const table = Ti.UI.createTableView({
data: [ row ]
});
win.add(table);
win.open();
*EXPECTED*
- TableViewRow shows ripple animation over specified backgroundColor.
*ACTUAL*
- TableViewRow changes background to an unexpected color.
No comments