Description
When setting the image property of a ListItem it overlays the title. On Android the image is on the right of the ListItem and on iOS it's on the left.
var win = Ti.UI.createWindow({backgroundColor: 'white'});
var listView = Ti.UI.createListView();
var sections = [];
var vegSection = Ti.UI.createListSection({ headerTitle: 'Vegetables'});
var vegDataSet = [
{properties: { title: 'Carrots', image: 'Logo.png', color: 'black'}},
{properties: { title: 'Potatoes', color: 'black'}},
];
vegSection.setItems(vegDataSet);
sections.push(vegSection);
listView.sections = sections;
win.add(listView);
win.open();
Steps to reproduce
Add the above to an existing app.js and build for Windows
Actual
Image and text overlay
Expected
Image and text should not overlay
https://github.com/appcelerator/titanium_mobile_windows/pull/1130
Tested on SDK 7.0.0.v20171116132144 installed from CLI. Fix is verified.