Skip to content

Commit

Permalink
dart format fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nazarski committed Apr 27, 2023
1 parent 8fa0fb7 commit ee0f0ec
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion lib/domain/highlight_style.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
1 change: 0 additions & 1 deletion lib/presentation/language_tool_text_field.dart
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ class LanguageToolTextField extends StatefulWidget {
}

class _LanguageToolTextFieldState extends State<LanguageToolTextField> {

/// Sends API request to get a list of Mistake
Future<void> _check(String text) async {
final mistakes = await widget.langService.findMistakes(text);
Expand Down

0 comments on commit ee0f0ec

Please sign in to comment.