Scale/Size issue on iOS

from: HaxeUI v1.1 released!

.text is now used rather than .value in default items renderers
This isnt a huge change, but may cause some confusion with existing UIs: previously to show text in a dropdown, or listview, or tableview you would use .value, this has changed now to make things more consistent to .text, eg:
var ds = new ArrayDataSource();
ds.add({text: “Item 1”});
ds.add({text: “Item 2”});
ds.add({text: “Item 3”});
This applies to xml also - if you find your lists not showing data after the update, try changing your population method to use .text