Created
February 7, 2014 17:26
-
-
Save ricardoalcocer/8867531 to your computer and use it in GitHub Desktop.
Scrolling Label
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var view1 = Titanium.UI.createScrollView({ | |
contentWidth:Ti.UI.FILL, | |
contentHeight:Ti.UI.FILL, | |
showVerticalScrollIndicator:true, | |
showHorizontalScrollIndicator:true | |
}); | |
var label1 = Titanium.UI.createLabel({ | |
color:'#000', | |
text: "sdfsdfasdf ", | |
width: Ti.UI.FILL, | |
font:{fontSize:15,fontFamily:'Helvetica Neue'}, | |
height: Ti.UI.FILL, | |
verticalAlign: Ti.UI.TEXT_VERTICAL_ALIGNMENT_TOP | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment