Open
Description
The backgroundColor comes out dark gray:
const tf=Ti.UI.createTextArea({
backgroundColor: 'white',
color:'black',
width: Ti.UI.FILL,
height: '25mm',
hintText: 'Hint Text',
value: 'Value of text',
textAlign:Ti.UI.TEXT_ALIGNMENT_CENTER,
verticalAlign: Titanium.UI.TEXT_VERTICAL_ALIGNMENT_CENTER,
shadowColor: '#888',
shadowOffset: {x:15, y:15},
shadowRadius: 3,
borderColor: 'gray',
borderRadius: '2mm',
bottom: '1.5mm',
top: 0,
left: '1mm',
right: '1mm',
font: { fontSize: '4mm' },
hintTextColor: 'gray'});