From ee0f0ec2809836a39c26782e6fa2bd601c375fca Mon Sep 17 00:00:00 2001 From: nazarski <110051407+nazarski@users.noreply.github.com> Date: Thu, 27 Apr 2023 20:30:23 +0300 Subject: [PATCH] dart format fix --- lib/domain/highlight_style.dart | 2 +- lib/presentation/language_tool_text_field.dart | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/domain/highlight_style.dart b/lib/domain/highlight_style.dart index f7c0925..bbfa756 100644 --- a/lib/domain/highlight_style.dart +++ b/lib/domain/highlight_style.dart @@ -4,7 +4,7 @@ import 'package:flutter/material.dart'; class HighlightStyle { ///Initial values static const double _initialBackgroundOpacity = 0.2; - static const double _initialLineHeight = 1.5; + static const double _initialLineHeight = 1.5; /// Misspelling mistake highlight color final Color misspellingMistakeColor; diff --git a/lib/presentation/language_tool_text_field.dart b/lib/presentation/language_tool_text_field.dart index 0fa9dab..2cb1e15 100644 --- a/lib/presentation/language_tool_text_field.dart +++ b/lib/presentation/language_tool_text_field.dart @@ -35,7 +35,6 @@ class LanguageToolTextField extends StatefulWidget { } class _LanguageToolTextFieldState extends State { - /// Sends API request to get a list of Mistake Future _check(String text) async { final mistakes = await widget.langService.findMistakes(text);