@@ -664,7 +664,7 @@ class SuperEditorState extends State<SuperEditor> {
664
664
widget.keyboardActions ??
665
665
(inputSource == TextInputSource .ime ? defaultImeKeyboardActions : defaultKeyboardActions);
666
666
667
- void _openSoftareKeyboard () {
667
+ void _openSoftwareKeyboard () {
668
668
if (! _softwareKeyboardController.hasDelegate) {
669
669
// There is no IME connection. It isn't possible to request the keyboard.
670
670
return ;
@@ -898,7 +898,7 @@ class SuperEditorState extends State<SuperEditor> {
898
898
getDocumentLayout: () => editContext.documentLayout,
899
899
selection: editContext.composer.selectionNotifier,
900
900
openKeyboardWhenTappingExistingSelection: widget.selectionPolicies.openKeyboardWhenTappingExistingSelection,
901
- openSoftwareKeyboard: _openSoftareKeyboard ,
901
+ openSoftwareKeyboard: _openSoftwareKeyboard ,
902
902
contentTapHandlers: [
903
903
..._contentTapHandlers ?? [],
904
904
for (final plugin in widget.plugins) //
@@ -918,7 +918,7 @@ class SuperEditorState extends State<SuperEditor> {
918
918
getDocumentLayout: () => editContext.documentLayout,
919
919
selection: editContext.composer.selectionNotifier,
920
920
openKeyboardWhenTappingExistingSelection: widget.selectionPolicies.openKeyboardWhenTappingExistingSelection,
921
- openSoftwareKeyboard: _openSoftareKeyboard ,
921
+ openSoftwareKeyboard: _openSoftwareKeyboard ,
922
922
isImeConnected: _isImeConnected,
923
923
contentTapHandlers: [
924
924
..._contentTapHandlers ?? [],
0 commit comments