Skip to content

Commit

Permalink
SuperTextField: propagate blinkTimingMode to platform implementations (
Browse files Browse the repository at this point in the history
…Resolves #1543) (#1544)
  • Loading branch information
knopp authored and matthew-carroll committed Oct 24, 2023
1 parent b3d77a6 commit dc28279
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions super_editor/lib/src/super_textfield/super_textfield.dart
Original file line number Diff line number Diff line change
Expand Up @@ -338,6 +338,7 @@ class SuperTextFieldState extends State<SuperTextField> implements ImeInputOwner
inputSource: _inputSource,
textInputAction: _textInputAction,
imeConfiguration: widget.imeConfiguration,
blinkTimingMode: widget.blinkTimingMode,
);
case SuperTextFieldPlatformConfiguration.android:
return Shortcuts(
Expand All @@ -363,6 +364,7 @@ class SuperTextFieldState extends State<SuperTextField> implements ImeInputOwner
textInputAction: _textInputAction,
imeConfiguration: widget.imeConfiguration,
padding: widget.padding,
blinkTimingMode: widget.blinkTimingMode,
),
);
case SuperTextFieldPlatformConfiguration.iOS:
Expand All @@ -389,6 +391,7 @@ class SuperTextFieldState extends State<SuperTextField> implements ImeInputOwner
textInputAction: _textInputAction,
imeConfiguration: widget.imeConfiguration,
padding: widget.padding,
blinkTimingMode: widget.blinkTimingMode,
),
);
}
Expand Down

0 comments on commit dc28279

Please sign in to comment.