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

WrapView is a superset of the Wrap widget, with the additional ability of lazy loading.

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.


2
likes
120
points
32
downloads

Publisher

unverified uploader

Weekly Downloads

WrapView is a superset of the Wrap widget, with the additional ability of lazy loading.

Homepage

Documentation

API reference

License

unknown (license)

Dependencies

flutter

More

Packages that depend on wrapview