match_sorter 0.2.0 copy "match_sorter: ^0.2.0" to clipboard
match_sorter: ^0.2.0 copied to clipboard

A dart adaptation of the match-sorter package for javascript

example/match_sorter_example.dart

import 'package:match_sorter/match_sorter.dart';

void main() {
  List<Item> items = stringsToItems(['Chakotay', 'Brunt', 'Charzard']);
  var searchQuery = 'Ch';

  List<Item> matchedItems = matchSorter(
    searchQuery: searchQuery,
    items: items,
  );

  print(matchedItems);
  // [{ value: Chakotay }, { value: Charzard }]
}
2
likes
160
points
46
downloads

Publisher

verified publisherdecafdevs.com

Weekly Downloads

A dart adaptation of the match-sorter package for javascript

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

collection, diacritic

More

Packages that depend on match_sorter