infinite_pageview 0.0.1
infinite_pageview: ^0.0.1 copied to clipboard
PageView but its infinite and can go left to the negatives!
infinite_pageview #
PageView but its infinite and can go left to the negatives!
Inspired by infinite_listview.
[demo.gif]Example: #
InfinitePageView(
itemBuilder: (context, index) => Container(
color: Colors.blue,
child: Center(
child: Text(
style: TextStyle(fontSize: 30, color: Colors.white),
index.toString(),
),
),
)
Run the example: #
cd example
flutter run