Titanium JIRA Archive
Titanium SDK/CLI (TIMOB)

[TIMOB-28238] iOS: TableViewRow ignores borderRadius

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:37:58.000+0000
Updated2020-11-09T17:38:19.000+0000

Description

- Specifying a borderRadius has no effect for TableViewRow. *TEST*
const win = Ti.UI.createWindow({ backgroundColor: 'gray' });
const row = Ti.UI.createTableViewRow({
	borderRadius: 20,
	height: 80,
	title: 'View should have a border radius',
	backgroundColor: 'red'
});
const table = Ti.UI.createTableView({
  backgroundColor: 'white',
  data: [ row ]
});

win.add(table);
win.open();
*EXPECTED* - TableViewRow has a borderRadius applied. *ACTUAL* - TableViewRow ignores borderRadius.

Comments

No comments

JSON Source