Skip to content

Commit

Permalink
Fix the scroll delta negation in the E2E version of picture_cache_per…
Browse files Browse the repository at this point in the history
…f benchmark (#107678)
  • Loading branch information
flar authored Jul 19, 2022
1 parent d72f08f commit dbe38ee
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ void main() {
Future<void> scrollOnce(double offset) async {
await controller.timedDrag(
nestedScroll,
Offset(-offset, 0.0),
Offset(offset, 0.0),
const Duration(milliseconds: 300),
);
await Future<void>.delayed(const Duration(milliseconds: 500));
Expand Down

0 comments on commit dbe38ee

Please sign in to comment.