Skip to content

Instantly share code, notes, and snippets.

@yuki2021
Created March 21, 2023 08:34
Show Gist options
  • Save yuki2021/141832117bf4e7cf1730fbfed1d8a972 to your computer and use it in GitHub Desktop.
Save yuki2021/141832117bf4e7cf1730fbfed1d8a972 to your computer and use it in GitHub Desktop.
FlutterのWidgetテストでスクロールする
// スクロールする
final scrollableWidget = find.byType(SingleChildScrollView).first;
await tester.drag(scrollableWidget, const Offset(0, -5000));
await tester.pumpAndSettle();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment