Details
-
Type:
Bug
-
Status: Open
-
Priority:
Medium
-
Resolution: Unresolved
-
Affects Version/s: None
-
Fix Version/s: None
-
Component/s: iOS
-
Labels:None
-
Story Points:5
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.
Attachments
Issue Links
- is cloned from
-
TIMOB-28164 Android: TableViewRow displays incorrect background upon press
-
- Closed
-