item_selector

Last updated:

0 purchases

item_selector Image
item_selector Images
Add to Cart

Description:

item selector

Item Selector for Flutter #




A generic Flutter item selector that works with
ListView, GridView, Row, Column, or basically any parent widget that
can have indexed child widgets. It supports single-selection by tap,
and multi-selection by long-press and drag with auto-scrolling.
Preview #



ListView
GridView












Column
Custom









Usage #
To use this package, add item_selector as a dependency in your pubspec.yaml file.
ItemSelectionController(
child: ListView(
children: List.generate(10, (int index) {
return ItemSelectionBuilder(
index: index,
builder: (BuildContext context, int index, bool selected) {
return Text('$index: $selected');
},
);
}),
),
)
copied to clipboard
Thanks #
Item Selector is based on Multi Select GridView in Flutter - by Simon Lightfoot.

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.