Skip to content

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.

License

Notifications You must be signed in to change notification settings

AlexMeuer/OverflowPageView

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')
    return Container(
      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

License

Stars

Watchers

Forks

Releases

No releases published

Languages