Features

The standard Wrap constructor works well for small lists. To work with lists that contain a large number of items, it’s best to use the WrapView.builder constructor.

In contrast to the default Wrap constructor, which requires creating all items at once, the WrapView.builder() constructor creates items as they’re scrolled onto the screen.

Getting started

TODO: Improve documentation

Usage

WrapView.builder(
  itemCount: items.length,
  itemBuilder: (context, index) {
    return ListTile(
      title: Text(items[index]),
    );
  },
)

Additional information

The package is actively maintained and safe to use in a production environment.


Libraries

wrapview