stacked_page_view 1.0.1 copy "stacked_page_view: ^1.0.1" to clipboard
stacked_page_view: ^1.0.1 copied to clipboard

outdated

A flutter plugin to add vertical carousel

Stacked Page View! #

Hi! This package will create stacked page view in your flutter app. it's as lightweight as it can get⚡⚡ .

  • Just wrap it between your PageView builder and the iterable children like the code below.
PageView.builder(
   itemCount:  10,
   scrollDirection:  Axis.vertical,
   controller: pageController,
   itemBuilder: (context, index) {
   return  StackPageView(                <<<<
   controller: pageController,           <<<<
   index: index,                         <<<<
   child:  Container(
   color: (colors..shuffle()).first,
   child:  Center(
		    child:  Text( '$index',
	    style:  TextStyle(
		    color:  Colors.white,
		    fontSize:  25,
              ),
           ),
          ),
	      ),
	     );
	   },
   )
21
likes
0
pub points
75%
popularity

Publisher

unverified uploader

A flutter plugin to add vertical carousel

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on stacked_page_view