FLUTTER ECOSYSTEM

FlutterFlow/text_search

An in-memory fuzzy text search library for Dart.

text_search project cover
Stars
18
Forks
4
Last push (UTC)
May 22, 2024
Project status
Active
FlutterFlow GitHub avatar
GITHUB Organization

FlutterFlow ↗

LanguagesDart

Packages published by this repository

Dependencies used

Dependency list 3 items
  • tuple^2.0.0
  • pedanticDevelopment
  • testDevelopment

Original README

English project snapshot. Visit GitHub for the latest content.

Expand / collapse project README

An in-memory fuzzy text search library for Dart.

license.

Usage

A simple usage example:

import 'package:text_search/text_search.dart';

main() {
  final searchableItems = [
    TextSearchItem.fromTerms('Coffee Shop', ['coffee', 'latte', 'macchiato', 'tea']),
    TextSearchItem.fromTerms('Dessert', ['ice cream', 'cake', 'pastry']),
    TextSearchItem.fromTerms('Milk Tea Shop', ['boba', 'milk tea', 'bubble tea']),
  ];

  final placeTypeSearch = TextSearch(searchableItems);
  print(placeTypeSearch.search('icecream'));
}

Features and bugs

Please file feature requests and bugs at the issue tracker.