isFindNavigatorVisible method

  1. @SupportedPlatforms.new(platforms: [IOSPlatform(apiName: 'UIFindInteraction.isFindNavigatorVisible', apiUrl: 'https://developer.apple.com/documentation/uikit/uifindinteraction/3975828-isfindnavigatorvisible?changes=_2', note: 'Available only if [InAppWebViewSettings.isFindInteractionEnabled] is `true`.')])
Future<bool?> isFindNavigatorVisible()

A Boolean value that indicates when the find panel displays onscreen.

Officially Supported Platforms/Implementations:

Use the PlatformFindInteractionController.isMethodSupported method to check if this method is supported at runtime.

Implementation

@SupportedPlatforms(
  platforms: [
    IOSPlatform(
      apiName: 'UIFindInteraction.isFindNavigatorVisible',
      apiUrl:
          'https://developer.apple.com/documentation/uikit/uifindinteraction/3975828-isfindnavigatorvisible?changes=_2',
      note:
          'Available only if [InAppWebViewSettings.isFindInteractionEnabled] is `true`.',
    ),
  ],
)
Future<bool?> isFindNavigatorVisible() {
  throw UnimplementedError(
    'isFindNavigatorVisible is not implemented on the current platform',
  );
}