Skip to content

Repository files navigation

overflow_page_view

style: effective dart

A page view that displays as many fully visible items as it can in a list before beginning to do the same on the next page.

Demo Gif

Usage

Think of it like a ListView.builder(..) that gets displayed as pages.

OverflowPageView(
itemBuilder: (context, index) {
print('Building item for index: $index')
returnContainer(
height:32,
child:Center(
child:Text('Item $index'),
),
),
},
),

About

A page view that displays as many fully visible items as it can in a list before beginning to do the same on the next page.

Resources

Stars

3 stars

Watchers

1 watching

Forks

Releases

Contributors

Languages