Description
Image property of button is currently identical to backgroundImage, according to docs it should display an image to the left of the button title.
Android doesn't demonstrate this behaviour either, need to check iOS
var _window = Ti.UI.createWindow({ backgroundColor: 'green' });
var button = Titanium.UI.createButton({
top: 60,
title: 'Hello',
width: '180',
height: '80',
//backgroundImage : 'Logo.png',
image: 'Logo.png',
});
_window.add(button);
_window.open()
Steps to reproduce
Add the above to an existing app.js and build for Windows
Actual
image property takes all up all of button
Expected
image property should only be placed to left of button
Tested on iOS, but it doesn't display any image on the button neither. I suspect it is a documentation issue?
Closing this, this does not work even on iOS. I suspect it is a documentation issue?
Closing as "won't do". If this is in error, please reopen.