FLUTTER ECOSYSTEM

comigor/fuzzy

Fuzzy search in Dart

fuzzy project cover
Stars
41
Forks
22
Last push (UTC)
Sep 7, 2026
Project status
Active
Igor Borges GitHub avatar
GITHUB User

Igor Borges ↗

🇧🇷. 32. Staff Software Engineer. Bugless Developer.

@decade-engSão PauloOfficial website ↗
LanguagesDart

Packages published by this repository

Dependencies used

Dependency list 3 items
  • stringr^1.0.0
  • testDevelopment^1.24.6-nullsafety
  • pedanticDevelopment^1.11.1-nullsafety

Original README

English project snapshot. Visit GitHub for the latest content.

Expand / collapse project README

Fuzzy

Pub Package CI

Fuzzy search in Dart.

This project is basically a code conversion, subset of Fuse.js.

Installation

add the following to your pubspec.yaml file:

dependencies:
  fuzzy: <1.0.0

then run:

pub get

or with flutter:

flutter packages get

Usage

import 'package:fuzzy/fuzzy.dart';

void main() {
  final fuse = Fuzzy(['apple', 'banana', 'orange']);

  final result = fuse.search('ran');

  result.map((r) => r.output.first.value).forEach(print);
}

Don't forget to take a look at FuzzyOptions!