0 purchases
dgst selector
Provides a custom TypeAhead bindable with a single selective or multi selective item list. Multiple selections, can be shown as id based chips.
Usage #
final List<DgstSelectionItem> initItems = <DgstSelectionItem>[
const DgstSelectionItem(id: 1, name: 'Item 1'),
const DgstSelectionItem(id: 2, name: 'Item 2')
];
copied to clipboard
DgstSelector(
title: 'Multi-Selector',
dgstSelectorType: DgstSelectorType.MULTI_SELECTOR,
sourceCallback: testCallback(),
initialSelectedItems: initItems,
onSelectedItemsChanged: (value) => print(' > Selected Items Changed < : $value'),
)
copied to clipboard
Any contributions will be appreciated.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.