Fix hit test position in text_line.dart

pull/87/head
Miller Adulu 4 years ago
parent 2d9a182b29
commit 7d1f707b7b
  1. 2
      lib/widgets/text_line.dart

@ -777,7 +777,7 @@ class RenderEditableTextLine extends RenderEditableBox {
}
@override
bool hitTestChildren(BoxHitTestResult result, {Offset position}) {
bool hitTestChildren(BoxHitTestResult result, {required Offset position}) {
return this._children.first.hitTest(result, position: position);
}
}

Loading…
Cancel
Save