Skip to content

Commit

Permalink
Apply auto-format
Browse files Browse the repository at this point in the history
  • Loading branch information
bleroux committed Jan 10, 2023
1 parent 9e232a5 commit 4ccc9fb
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions simplistic_editor/lib/basic_text_input_client.dart
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@ class BasicTextInputClientState extends State<BasicTextInputClient>
}

@override
void didChangeInputControl(TextInputControl? oldControl, TextInputControl? newControl) {
void didChangeInputControl(
TextInputControl? oldControl, TextInputControl? newControl) {
if (_hasFocus && _hasInputConnection) {
oldControl?.hide();
newControl?.show();
Expand Down Expand Up @@ -771,7 +772,8 @@ class BasicTextInputClientState extends State<BasicTextInputClient>
textAlign: TextAlign.left,
textDirection: _textDirection,
locale: Localizations.maybeLocaleOf(context),
textHeightBehavior: DefaultTextHeightBehavior.maybeOf(context),
textHeightBehavior:
DefaultTextHeightBehavior.maybeOf(context),
textWidthBasis: TextWidthBasis.parent,
obscuringCharacter: '•',
obscureText:
Expand Down

0 comments on commit 4ccc9fb

Please sign in to comment.