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,
TextSelectionControls,
ValueChanged,
Widget;
Widget,
MouseCursor,
SystemMouseCursors;
import 'package:meta/meta.dart' show immutable;
import '../../../widgets/others/cursor.dart';
@ -174,6 +176,9 @@ class QuillRawEditorConfigurations extends Equatable {
/// The style to be used for the editing cursor.
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
/// lowercase keyboard.
///

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

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

Loading…
Cancel
Save