Skip to content

Commit

Permalink
chore: remove magnifierConfiguration from QuillEditorConfig
Browse files Browse the repository at this point in the history
  • Loading branch information
EchoEllet committed Dec 11, 2024
1 parent 12bd3fc commit 1adc524
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions lib/src/editor/config/editor_config.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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;

Expand Down Expand Up @@ -504,7 +498,6 @@ class QuillEditorConfig {
GlobalKey<EditorState>? editorKey,
TextSelectionThemeData? textSelectionThemeData,
bool? requestKeyboardFocusOnCheckListChanged,
TextMagnifierConfiguration? magnifierConfiguration,
TextInputAction? textInputAction,
bool? enableScribble,
void Function()? onScribbleActivated,
Expand Down Expand Up @@ -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,
Expand Down

0 comments on commit 1adc524

Please sign in to comment.