[TIMOB-28238] iOS: TableViewRow ignores borderRadius
GitHub Issue | n/a |
---|---|
Type | Bug |
Priority | Medium |
Status | Open |
Resolution | Unresolved |
Affected Version/s | n/a |
Fix Version/s | n/a |
Components | iOS |
Labels | n/a |
Reporter | Gary Mathews |
Assignee | Gary Mathews |
Created | 2020-11-09T17:37:58.000+0000 |
Updated | 2020-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
.
No comments