findNext method

Future<void> findNext({
  1. bool forward = true,
})

Highlights and scrolls to the next match found by findAll. Notifies PlatformFindInteractionController.onFindResultReceived listener.

forward represents the direction to search. The default value is true, meaning forward.

NOTE: on iOS, if InAppWebViewSettings.isFindInteractionEnabled is true, it uses the built-in find interaction native UI, otherwise this is implemented using CSS and Javascript.

Officially Supported Platforms/Implementations:

Implementation

Future<void> findNext({bool forward = true}) {
  throw UnimplementedError(
      'findNext is not implemented on the current platform');
}