presentFindNavigator method
- @SupportedPlatforms.new(platforms: [IOSPlatform(apiName: 'UIFindInteraction.presentFindNavigator', apiUrl: 'https://developer.apple.com/documentation/uikit/uifindinteraction/3975832-presentfindnavigator?changes=_2', note: 'Available only if [InAppWebViewSettings.isFindInteractionEnabled] is `true`.')])
Begins a search, displaying the find panel.
Officially Supported Platforms/Implementations:
- iOS WKWebView (Official API - UIFindInteraction.presentFindNavigator):
- Available only if InAppWebViewSettings.isFindInteractionEnabled is
true.
- Available only if InAppWebViewSettings.isFindInteractionEnabled is
Use the PlatformFindInteractionController.isMethodSupported method to check if this method is supported at runtime.
Implementation
@SupportedPlatforms(
platforms: [
IOSPlatform(
apiName: 'UIFindInteraction.presentFindNavigator',
apiUrl:
'https://developer.apple.com/documentation/uikit/uifindinteraction/3975832-presentfindnavigator?changes=_2',
note:
'Available only if [InAppWebViewSettings.isFindInteractionEnabled] is `true`.',
),
],
)
Future<void> presentFindNavigator() {
throw UnimplementedError(
'presentFindNavigator is not implemented on the current platform',
);
}