Titanium JIRA Archive
Titanium SDK/CLI (TIMOB)

[TIMOB-28163] Android: TableViewRow ignores borderRadius

GitHub Issuen/a
TypeBug
PriorityMedium
StatusClosed
ResolutionUnresolved
Affected Version/sn/a
Fix Version/sRelease 9.3.0
ComponentsAndroid
Labelsn/a
ReporterGary Mathews
AssigneeGary Mathews
Created2020-10-05T01:15:57.000+0000
Updated2020-11-20T00:24:44.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

  1. Gary Mathews 2020-10-26

    master: https://github.com/appcelerator/titanium_mobile/pull/12029

JSON Source