Last updated:
0 purchases
infinite pageview
infinite_pageview #
PageView but its infinite and can go left to the negatives!
Inspired by infinite_listview.
Example #
cd example
flutter run lib/main.dart
copied to clipboard
Usage: #
import 'package:infinite_pageview/infinite_pageview.dart';
InfinitePageView(
itemBuilder: (context, index) => Container(
color: Colors.blue,
child: Center(
child: Text(
style: TextStyle(
fontSize: 30,
color: Colors.white
),
index.toString(),
),
),
)
)
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.