Problem
Ti.UI.Labels only show one line of text. They're supposed to be multi-line labels, like they are on iOS, Android, and MobileWeb
Code
var win = Ti.UI.createWindow();
var l1 = Titanium.UI.createLabel({
text:'Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat',
height: Ti.UI.SIZE,
backgroundColor: 'red'
});
win.add(l1);
win.open()
Workaround
Setting the wordWrap to false. This should be true by default.
PR: https://github.com/appcelerator/titanium_mobile_blackberry/pull/81
Closing ticket as fixed.