scrollIntoView method

  1. @override
Future<void> scrollIntoView(
  1. Finder finder, {
  2. Duration? timeout = const Duration(seconds: 30),
})
override

Implementation

@override
Future<void> scrollIntoView(
  Finder finder, {
  Duration? timeout = const Duration(seconds: 30),
}) async {
  await nativeDriver.ensureVisible(finder);
  await waitForAppToSettle();
}