Steps to reproduce:
1. Use the code below in your app.js:
const win = Ti.UI.createWindow({
backgroundColor : 'white'
});
var rowItems = [];
for (var i = 0; i < 10; i++) {
var row = Ti.UI.createTableViewRow({
title : 'Apples',
borderColor : 'red',
borderWidth : 2,
});
row.add(Ti.UI.createLabel({
color : 'black',
text : i,
touchEnabled : false,
left : 0,
width : Ti.UI.FILL
}));
rowItems.push(row);
}
var table = Ti.UI.createTableView({
data : rowItems,
minRowHeight : 100
});
win.add(table);
win.open();
2. Build for android device.
Actual result:
1. The
minRowHeight
property does not work.
Expected result:
1. The
minRowHeight
property works as expected.
master: https://github.com/appcelerator/titanium_mobile/pull/12558
FR Passed.
merged to master; 10_0_X for 10.0.0 target; and 9_3_X branch.