scrollTo method

Future<void> scrollTo({
  1. required int x,
  2. required int y,
  3. bool animated = false,
})

Scrolls the WebView to the position.

x represents the x position to scroll to.

y represents the y position to scroll to.

animated true to animate the scroll transition, false to make the scoll transition immediate.

Supported Platforms/Implementations:

Implementation

Future<void> scrollTo(
    {required int x, required int y, bool animated = false}) async {
  Map<String, dynamic> args = <String, dynamic>{};
  args.putIfAbsent('x', () => x);
  args.putIfAbsent('y', () => y);
  args.putIfAbsent('animated', () => animated);
  await _channel.invokeMethod('scrollTo', args);
}