more fix on keyboard focus when cursor is on + bump version

pull/41/head^2
li3317 4 years ago
parent 2efb4b12c2
commit 6c156d4a9a
  1. 5
      CHANGELOG.md
  2. 8
      lib/widgets/editor.dart
  3. 2
      pubspec.yaml

@ -99,4 +99,7 @@
* cursor focus when keyboard is on.
## [0.3.2]
* Fix cursor focus issue when keyboard is on.
* Fix cursor focus issue when keyboard is on.
## [0.3.3]
* More fix on cursor focus issue when keyboard is on.

@ -876,19 +876,17 @@ class RenderEditor extends RenderEditableContainerBox
double getOffsetToRevealCursor(
double viewportHeight, double scrollOffset, double offsetInViewport) {
List<TextSelectionPoint> endpoints = getEndpointsForSelection(selection);
if (endpoints.length != 1) {
return null;
}
TextSelectionPoint endpoint = endpoints.first;
RenderEditableBox child = childAtPosition(selection.extent);
const kMargin = 8.0;
double caretTop = endpoints.single.point.dy -
double caretTop = endpoint.point.dy -
child.preferredLineHeight(TextPosition(
offset:
selection.extentOffset - child.getContainer().getOffset())) -
kMargin +
offsetInViewport;
final caretBottom = endpoints.single.point.dy + kMargin + offsetInViewport;
final caretBottom = endpoint.point.dy + kMargin + offsetInViewport;
double dy;
if (caretTop < scrollOffset) {
dy = caretTop;

@ -1,6 +1,6 @@
name: flutter_quill
description: One client and affiliated collaborator of Flutter Quill is Bullet Journal App.
version: 0.3.2
version: 0.3.3
#author: bulletjournal
homepage: https://bulletjournal.us/home/index.html
repository: https://github.com/singerdmx/flutter-quill.git

Loading…
Cancel
Save