onLoadResourceCustomScheme method
- @SupportedPlatforms.new(platforms: [AndroidPlatform(), IOSPlatform(), MacOSPlatform()])
- @Deprecated('Use onLoadResourceWithCustomScheme instead')
- Uri url
Use onLoadResourceWithCustomScheme instead.
Officially Supported Platforms/Implementations:
- Android WebView
- iOS WKWebView
- macOS WKWebView
Parameters - Officially Supported Platforms/Implementations:
url: all platforms
Use the PlatformInAppBrowserEvents.isMethodSupported method to check if this method is supported at runtime.
Implementation
@SupportedPlatforms(
platforms: [AndroidPlatform(), IOSPlatform(), MacOSPlatform()],
)
@Deprecated('Use onLoadResourceWithCustomScheme instead')
FutureOr<CustomSchemeResponse?>? onLoadResourceCustomScheme(Uri url) {
return null;
}