overflow_page_view 0.1.0 copy "overflow_page_view: ^0.1.0" to clipboard
overflow_page_view: ^0.1.0 copied to clipboard

Displays items in vertical lists. When a list fills the constaints, it begins laying out items on the next page.

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'),
      ),
    ),
  },
),
1
likes
40
pub points
10%
popularity

Publisher

verified publisheralexmeuer.com

Displays items in vertical lists. When a list fills the constaints, it begins laying out items on the next page.

Repository (GitHub)
View/report issues

License

GPL-3.0 (LICENSE)

Dependencies

flutter

More

Packages that depend on overflow_page_view