fix: invalid selection when tapping placeholder text (#2062)

pull/2063/head v10.0.8
Huan Du 8 months ago committed by GitHub
parent ab004b8755
commit 5526ea4feb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 8
      lib/src/editor/editor.dart

@ -10,6 +10,7 @@ import 'package:flutter/rendering.dart';
import 'package:flutter/services.dart';
import '../common/utils/platform.dart';
import '../document/attribute.dart';
import '../document/document.dart';
import '../document/nodes/container.dart' as container_node;
import '../document/nodes/leaf.dart';
@ -985,6 +986,13 @@ class RenderEditor extends RenderEditableContainerBox
start: localWord.start + nodeOffset,
end: localWord.end + nodeOffset,
);
// Don't change selection if the selected word is a placeholder.
if (child.container.style.attributes
.containsKey(Attribute.placeholder.key)) {
return;
}
if (position.offset - word.start <= 1 && word.end != position.offset) {
_handleSelectionChange(
TextSelection.collapsed(offset: word.start),

Loading…
Cancel
Save