wrapview 0.0.1
wrapview: ^0.0.1 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: List prerequisites and provide or point to information on how to start using the package.
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 production environment.