findInteractionController property

FindInteractionController? get findInteractionController
inherited

Represents the find interaction feature controller.

Officially Supported Platforms/Implementations:

  • Android WebView
  • iOS WKWebView
  • macOS WKWebView

Use the PlatformInAppBrowser.isPropertySupported method to check if this property is supported at runtime.

Implementation

FindInteractionController? get findInteractionController {
  final findInteractionControllerPlatform =
      platform.findInteractionController;
  if (findInteractionControllerPlatform == null) {
    return null;
  }
  return FindInteractionController.fromPlatform(
    platform: findInteractionControllerPlatform,
  );
}