Skip to content

Commit

Permalink
add noSuchMethod to _MulticastCanvas to unblock smoke testing against…
Browse files Browse the repository at this point in the history
… forthcoming new getTransform/Clip methods (#103737)
  • Loading branch information
flar authored May 16, 2022
1 parent 03be77d commit 697e930
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions packages/flutter/lib/src/widgets/widget_inspector.dart
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,11 @@ class _MulticastCanvas implements Canvas {
_main.translate(dx, dy);
_screenshot.translate(dx, dy);
}

@override
dynamic noSuchMethod(Invocation invocation) {
super.noSuchMethod(invocation);
}
}

Rect _calculateSubtreeBoundsHelper(RenderObject object, Matrix4 transform) {
Expand Down

0 comments on commit 697e930

Please sign in to comment.