stacked_page_view

Creator: coderz1093

Last updated:

Add to Cart

Description:

stacked page view

Stacked Page View! #


pub.dev/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,
),
),
),
),
);
},
)

copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files:

Customer Reviews

There are no reviews.