scrollUntilVisible abstract method

Future<void> scrollUntilVisible(
  1. TFinderType item, {
  2. TFinderType scrollable,
  3. double dx,
  4. double dy,
  5. Duration? timeout = const Duration(seconds: 30),
})

Repeatedly scrolls a Scrollable by delta until finder is visible. Between each scroll, wait for duration time for settling. If scrollable is null, this will find a Scrollable.

Implementation

Future<void> scrollUntilVisible(
  TFinderType item, {
  TFinderType scrollable,
  double dx,
  double dy,
  Duration? timeout = const Duration(seconds: 30),
});