From a2a4faf3dbc04b841dac7c40e9910382e9b9d04b Mon Sep 17 00:00:00 2001 From: oligazar Date: Tue, 9 Apr 2024 21:49:23 +0300 Subject: [PATCH] Fix for keyboard jumping when switching focus from a TextField (#1810) --- lib/src/widgets/raw_editor/raw_editor_state.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/src/widgets/raw_editor/raw_editor_state.dart b/lib/src/widgets/raw_editor/raw_editor_state.dart index 670cd8ee..da636414 100644 --- a/lib/src/widgets/raw_editor/raw_editor_state.dart +++ b/lib/src/widgets/raw_editor/raw_editor_state.dart @@ -1453,6 +1453,7 @@ class QuillRawEditorState extends EditorState void _handleFocusChanged() { if (dirty) { + requestKeyboard(); SchedulerBinding.instance .addPostFrameCallback((_) => _handleFocusChanged()); return;