From 1adc5249b97a32c2d3982d340e67756a52e980df Mon Sep 17 00:00:00 2001 From: Ellet Date: Wed, 11 Dec 2024 17:10:57 +0300 Subject: [PATCH] chore: remove magnifierConfiguration from QuillEditorConfig --- lib/src/editor/config/editor_config.dart | 9 --------- 1 file changed, 9 deletions(-) diff --git a/lib/src/editor/config/editor_config.dart b/lib/src/editor/config/editor_config.dart index bd364a3cc..1061845b0 100644 --- a/lib/src/editor/config/editor_config.dart +++ b/lib/src/editor/config/editor_config.dart @@ -72,7 +72,6 @@ class QuillEditorConfig { this.contextMenuBuilder, this.editorKey, this.requestKeyboardFocusOnCheckListChanged = false, - @experimental this.magnifierConfiguration, this.textInputAction = TextInputAction.newline, this.enableScribble = false, this.onScribbleActivated, @@ -434,11 +433,6 @@ class QuillEditorConfig { /// should we request keyboard focus?? final bool requestKeyboardFocusOnCheckListChanged; - /// This feature is currently experimental and only supported - /// on **Android** and **iOS**. - @experimental - final TextMagnifierConfiguration? magnifierConfiguration; - /// Default to [TextInputAction.newline] final TextInputAction textInputAction; @@ -504,7 +498,6 @@ class QuillEditorConfig { GlobalKey? editorKey, TextSelectionThemeData? textSelectionThemeData, bool? requestKeyboardFocusOnCheckListChanged, - TextMagnifierConfiguration? magnifierConfiguration, TextInputAction? textInputAction, bool? enableScribble, void Function()? onScribbleActivated, @@ -571,8 +564,6 @@ class QuillEditorConfig { requestKeyboardFocusOnCheckListChanged: requestKeyboardFocusOnCheckListChanged ?? this.requestKeyboardFocusOnCheckListChanged, - magnifierConfiguration: - magnifierConfiguration ?? this.magnifierConfiguration, textInputAction: textInputAction ?? this.textInputAction, enableScribble: enableScribble ?? this.enableScribble, onScribbleActivated: onScribbleActivated ?? this.onScribbleActivated,