Fix: last version dependency has weird behaviors with accents

pull/2118/head
CatHood0 8 months ago
parent f2ef956293
commit 30a4dabbd8
  1. 2
      example/lib/screens/quill/quill_screen.dart
  2. 4
      lib/src/editor/widgets/text/text_line.dart
  3. 2
      pubspec.yaml

@ -43,8 +43,6 @@ class _QuillScreenState extends State<QuillScreen> {
void initState() {
super.initState();
_controller.document = widget.args.document;
SpellcheckerServiceProvider.setInstance(
SimpleSpellCheckerImpl(language: 'en'));
}
@override

@ -404,9 +404,7 @@ class _TextLineState extends State<TextLine> {
}
}
// verify is node is not link because we never need check a link word
// and avoid to show highlighting when is only reading
if (!isLink && !widget.readOnly && !widget.line.style.attributes.containsKey('code-block')) {
if (!isLink && !widget.readOnly && !widget.line.style.attributes.containsKey('code-block') && !kIsWeb) {
final service = SpellcheckerServiceProvider.instance;
final spellcheckedSpans = service.fetchSpellchecker(textNode.value);
if (spellcheckedSpans != null && spellcheckedSpans.isNotEmpty) {

@ -45,7 +45,7 @@ dependencies:
# Dart Packages
intl: ^0.19.0
dart_quill_delta: ^10.0.0
simple_spell_checker: ^1.0.4
simple_spell_checker: ^1.0.6
collection: ^1.17.0
quiver: ^3.2.1
equatable: ^2.0.5

Loading…
Cancel
Save