[TIMOB-28163] Android: TableViewRow ignores borderRadius
| GitHub Issue | n/a |
|---|---|
| Type | Bug |
| Priority | Medium |
| Status | Closed |
| Resolution | Unresolved |
| Affected Version/s | n/a |
| Fix Version/s | Release 9.3.0 |
| Components | Android |
| Labels | n/a |
| Reporter | Gary Mathews |
| Assignee | Gary Mathews |
| Created | 2020-10-05T01:15:57.000+0000 |
| Updated | 2020-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.
master: https://github.com/appcelerator/titanium_mobile/pull/12029