CatHood0 / simple_spell_checker

A simple and powerful spell checker, allowing developers to detect and highlight spelling errors in text
https://pub.dev/packages/simple_spell_checker
MIT License
2 stars 1 forks source link

Feat: More translations for spell checker #2

Closed CatHood0 closed 2 months ago

CatHood0 commented 2 months ago

Features added:

Translations:

Checking even the dictionary is empty

This feature give us the ability to check our texts even the language is not founded and the dictionary is practicaly empty.

Note: This feature need to have safeDictionaryLoad active to avoid goes into a exception.

Example of this key:

 final SimpleSpellChecker spellchecker = SimpleSpellChecker(
      language: '',
      safeDictionaryLoad: true,
      worksWithoutDictionary: true,
    );