https://github.com/100lvlmaster/stacked_page_view
Flutter plugin to render stacked page view
https://github.com/100lvlmaster/stacked_page_view
carousel carousel-component dart flutter stacked-page
Last synced: 4 months ago
JSON representation
Flutter plugin to render stacked page view
- Host: GitHub
- URL: https://github.com/100lvlmaster/stacked_page_view
- Owner: 100lvlmaster
- License: bsd-3-clause
- Created: 2020-12-13T09:07:21.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-06-17T10:40:41.000Z (about 5 years ago)
- Last Synced: 2025-10-23T06:21:12.683Z (8 months ago)
- Topics: carousel, carousel-component, dart, flutter, stacked-page
- Language: Dart
- Homepage: https://pub.dev/packages/stacked_page_view
- Size: 86.9 KB
- Stars: 13
- Watchers: 1
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Stacked Page View!


### [pub.dev/stacked_page_view](https://pub.dev/packages/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.
```dart
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,
),
),
),
),
);
},
)
```
