Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SuperTextField: propagate blinkTimingMode to platform implementations #1544

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
SuperTextField: propagate blinkTimingMode to platform implementations
  • Loading branch information
knopp committed Oct 23, 2023
commit 65763ede361d13372fb07c1d95a3ec6a71b47289
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