wrapview

Creator: coderz1093

Last updated:

0 purchases

TODO
Add to Cart

Description:

wrapview

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]),
);
},
)
copied to clipboard
Additional information #
The package is actively maintained and safe to use in a production environment.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.