Titanium JIRA Archive
Titanium SDK/CLI (TIMOB)

[TIMOB-28237] iOS: TableViewRow displays incorrect background upon press

GitHub Issuen/a
TypeBug
PriorityMedium
StatusOpen
ResolutionUnresolved
Affected Version/sn/a
Fix Version/sn/a
ComponentsiOS
Labelsn/a
ReporterGary Mathews
AssigneeGary Mathews
Created2020-11-09T17:35:08.000+0000
Updated2020-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.

Comments

No comments

JSON Source