feat: Add `readOnlyMouseCursor` to config mouse cursor type (#1873)

* 🌍Add `readOnlyMouseCursor` to config mouse cursor type
Related issue: [Bug] Mouse cursor is still text insertion type when `readOnly` is `false` #1752

* 🔧Fix import
pull/1875/head
Cierra_Runis 11 months ago committed by GitHub
parent 04e0775cc8
commit cc48a2539e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 7
      lib/src/models/config/raw_editor/raw_editor_configurations.dart
  2. 5
      lib/src/widgets/raw_editor/raw_editor_render_object.dart
  3. 12
      lib/src/widgets/raw_editor/raw_editor_state.dart

@ -22,7 +22,9 @@ import 'package:flutter/widgets.dart'
TextFieldTapRegion, TextFieldTapRegion,
TextSelectionControls, TextSelectionControls,
ValueChanged, ValueChanged,
Widget; Widget,
MouseCursor,
SystemMouseCursors;
import 'package:meta/meta.dart' show immutable; import 'package:meta/meta.dart' show immutable;
import '../../../widgets/others/cursor.dart'; import '../../../widgets/others/cursor.dart';
@ -174,6 +176,9 @@ class QuillRawEditorConfigurations extends Equatable {
/// The style to be used for the editing cursor. /// The style to be used for the editing cursor.
final CursorStyle cursorStyle; final CursorStyle cursorStyle;
/// The [readOnlyMouseCursor] is used for Windows, macOS when [readOnly] is [true]
final MouseCursor readOnlyMouseCursor = SystemMouseCursors.text;
/// Configures how the platform keyboard will select an uppercase or /// Configures how the platform keyboard will select an uppercase or
/// lowercase keyboard. /// lowercase keyboard.
/// ///

@ -5,8 +5,9 @@ import '../../models/documents/document.dart';
import '../editor/editor.dart'; import '../editor/editor.dart';
import '../others/cursor.dart'; import '../others/cursor.dart';
class QuilRawEditorMultiChildRenderObject extends MultiChildRenderObjectWidget { class QuillRawEditorMultiChildRenderObject
const QuilRawEditorMultiChildRenderObject({ extends MultiChildRenderObjectWidget {
const QuillRawEditorMultiChildRenderObject({
required super.children, required super.children,
required this.document, required this.document,
required this.textDirection, required this.textDirection,

@ -483,8 +483,10 @@ class QuillRawEditorState extends EditorState
viewportBuilder: (_, offset) => CompositedTransformTarget( viewportBuilder: (_, offset) => CompositedTransformTarget(
link: _toolbarLayerLink, link: _toolbarLayerLink,
child: MouseRegion( child: MouseRegion(
cursor: SystemMouseCursors.text, cursor: widget.configurations.readOnly
child: QuilRawEditorMultiChildRenderObject( ? widget.configurations.readOnlyMouseCursor
: SystemMouseCursors.text,
child: QuillRawEditorMultiChildRenderObject(
key: _editorKey, key: _editorKey,
offset: offset, offset: offset,
document: doc, document: doc,
@ -515,8 +517,10 @@ class QuillRawEditorState extends EditorState
link: _toolbarLayerLink, link: _toolbarLayerLink,
child: Semantics( child: Semantics(
child: MouseRegion( child: MouseRegion(
cursor: SystemMouseCursors.text, cursor: widget.configurations.readOnly
child: QuilRawEditorMultiChildRenderObject( ? widget.configurations.readOnlyMouseCursor
: SystemMouseCursors.text,
child: QuillRawEditorMultiChildRenderObject(
key: _editorKey, key: _editorKey,
document: doc, document: doc,
selection: controller.selection, selection: controller.selection,

Loading…
Cancel
Save