Slidding layout widget of titanium widget
- A Twitter Bootstrap inspired framework for Appcelerator Titanium (Alloy)
- https://github.com/TNuzzi/wriststrap
#uses:
<Widget src="jumperLayout" backgroundColor="#0095DA">
<View id="slide1" title="Dashboard" tabWidth="70" width="100%" >
<Label>Text 1</Label>
</View>
<View id="slide2" title="My Account" tabWidth="70" width="100%" left="100%" backgroundColor="red" >
<Label>Text 2</Label>
</View>
<View id="slide3" title="How it works" tabWidth="80" width="100%" left="100%" backgroundColor="green" >
<Label>Text 3</Label>
</View>
<View id="slide4" title="Post Job" tabWidth="70" width="100%" left="100%" backgroundColor="white" >
<Label>Text 4</Label>
</View>
</Widget>
#Required attributes here:
- width : REQUIRED : it will be define the tab contents width.
- title : REQUIRED : it will be define the tab title.
- tabWidth : REQUIRED : it will be define width of the tab.


