fix overrides (#1489)

Co-authored-by: Ellet <73608287+freshtechtips@users.noreply.github.com>
pull/1539/head
Fabian Freund 1 year ago committed by GitHub
parent b6c119b15d
commit 2973f03593
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      lib/src/widgets/quill_single_child_scroll_view.dart
  2. 1649
      lib/src/widgets/raw_editor/raw_editor.dart

@ -288,8 +288,12 @@ class _RenderSingleChildViewport extends RenderBox
}
@override
RevealedOffset getOffsetToReveal(RenderObject target, double alignment,
{Rect? rect}) {
RevealedOffset getOffsetToReveal(
RenderObject target,
double alignment, {
Rect? rect,
Axis? axis, // Unused, only Axis.vertical supported by this viewport.
}) {
rect ??= target.paintBounds;
if (target is! RenderBox) {
return RevealedOffset(offset: offset.pixels, rect: rect);

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save