dart formatting

pull/2118/head
CatHood0 8 months ago
parent 30a4dabbd8
commit 21b5f93c68
  1. 7
      lib/src/editor/spellchecker/simple_spellchecker_impl.dart
  2. 5
      lib/src/editor/spellchecker/spellchecker_service.dart
  3. 5
      lib/src/editor/widgets/text/text_line.dart

@ -4,7 +4,7 @@ import 'package:simple_spell_checker/simple_spell_checker.dart';
import 'spellchecker_service.dart';
/// SimpleSpellCheckerImpl is a simple spell checker for get
/// SimpleSpellCheckerImpl is a simple spell checker for get
/// all words divide on different objects if them are wrong or not
class SimpleSpellCheckerImpl extends SpellcheckerService {
SimpleSpellCheckerImpl({required super.language})
@ -12,9 +12,10 @@ class SimpleSpellCheckerImpl extends SpellcheckerService {
language: language,
safeDictionaryLoad: true,
);
/// [SimpleSpellChecker] comes from the package [simple_spell_checker]
/// that give us all necessary methods for get our spans with highlighting
/// where needed
/// where needed
final SimpleSpellChecker checker;
@override
@ -32,7 +33,7 @@ class SimpleSpellCheckerImpl extends SpellcheckerService {
@override
void dispose({bool onlyPartial = false}) {
if(onlyPartial) {
if (onlyPartial) {
checker.disposeControllers();
return;
}

@ -6,9 +6,10 @@ abstract class SpellcheckerService {
SpellcheckerService({required this.language});
final String language;
/// dispose all the resources used for SpellcheckerService
///
/// if [onlyPartial] is true just dispose a part of the SpellcheckerService
///
/// if [onlyPartial] is true just dispose a part of the SpellcheckerService
/// (this comes from the implementation)
///
/// if [onlyPartial] is false dispose all resources

@ -404,7 +404,10 @@ class _TextLineState extends State<TextLine> {
}
}
if (!isLink && !widget.readOnly && !widget.line.style.attributes.containsKey('code-block') && !kIsWeb) {
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) {

Loading…
Cancel
Save