Skip to content

prashantsaini1/titanium-scrollable-views

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 

Repository files navigation

titanium-scrollable-views

A cross platform Alloy - Titanium scrollable widget with background color transition effect and animated paging controls.

Alt Text

This widget provides you a customizable scrollable view container with background color transition effect (optional) and nice paging controls for iOS & Android.

Installation

Add in your config.json, under dependencies:

"dependencies": {
    "in.prashant.scrollableViews" : "*"
}

Usage Titanium Classic

var widget = Alloy.createWidget('in.prashant.scrollableViews', {
	width: Ti.UI.FILL,
	top: 50,
	bottom: 50,
	pagingPosition : 'top',
	pagingColor : 'white',
	pagingEffect : true,
	backdropEffect : true,
	backdropColors : ['teal', 'silver', 'cyan', 'pink'],
	views : [Ti.UI.createView(), Ti.UI.createView(), Ti.UI.createView(), Ti.UI.createView()]
});

Usage Alloy

index.xml

<Window>
  <Widget id="scrollWidget" src="in.prashant.scrollableViews">
    <View> <Button>All Good 0</Button> </View>
    <View> <Button>All Good 1</Button> </View>
    <View> <Button>All Good 2</Button> </View>
    <View> <Button>All Good 3</Button> </View>
  </Widget>
</Window>

index.tss

"#scrollWidget": {	
	width: Ti.UI.FILL,
	top: 50,
	bottom: 50,
	pagingPosition : 'top',
	pagingColor : 'white',
	pagingEffect : true,
	backdropEffect : true,
	backdropColors : ['teal', 'silver', 'cyan', 'pink']
}

"Button" : {
	color : 'white'
}

Arguments

  • backdropEffect : set the background transition effect (true/false) - defaults to false - do not set background colors of Ti.UI.View to take effect of backdropEffect property
  • backdropColors : array of colors to use with backdropEffect - defaults to transparent
  • pagingEffect : shows the paging control (true/false) - defaults to true
  • pagerStyle : pager style - pass 1 for ring type pagers or pass 2 for solid colored pagers, if value is 2 then optionally pass pagingBackColor for unselected pagers
  • pagingPosition : position of paging control - pass string "top" or "bottom"
  • pagingPadding : padding between pagers in paging control - defaults to 7dp
  • pagingColor : color of paging control - defaults to white
  • pagingBackColor : sets the color of unselected pagers if pagerStyle is 2, otherwise not effective
  • clip : iOS only - clip views to show them adjacently - defaults to false
  • clipPadding : padding of views when clip is true
  • index : index of the current page to set in widget

Methods

  • add: Add view(s) at once with below arguments
    • argument 1 : pass single view (Ti.UI.View) or an array of views to add.
    • argument 2 : color or an array of colors for backdropEffect. (optional)
    • argument 3 : boolean to scroll to last view/page added. (optional)
  • remove: Remove view by passing either View or index of the view - iOS + Android ( 😜 but Ti SDK allows to remove the view by index on iOS only)
    • argument 1 : Ti.UI.View object or index of the view to remove.

Exposer Properties

  • scrollableView: instance of the Ti.UI.ScrollableView used in this widget.

Contributions

If you enjoy this module, feel free to contribute with your PR or donate :-)

About

A cross platform Ti.UI.ScrollableView widget with nice background effect and paging controls

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published