onReceivedTouchIconUrl property

  1. @SupportedPlatforms.new(platforms: [AndroidPlatform(apiName: 'WebChromeClient.onReceivedTouchIconUrl', apiUrl: 'https://developer.android.com/reference/android/webkit/WebChromeClient#onReceivedTouchIconUrl(android.webkit.WebView,%20java.lang.String,%20boolean)')])
void Function(T controller, WebUri url, bool precomposed)? onReceivedTouchIconUrl
final

Event fired when there is an url for an apple-touch-icon.

url represents the icon url.

precomposed is true if the url is for a precomposed touch icon.

Officially Supported Platforms/Implementations:

Parameters - Officially Supported Platforms/Implementations:

  • url: all platforms
  • precomposed: all platforms

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

Implementation

@SupportedPlatforms(
  platforms: [
    AndroidPlatform(
      apiName: 'WebChromeClient.onReceivedTouchIconUrl',
      apiUrl:
          'https://developer.android.com/reference/android/webkit/WebChromeClient#onReceivedTouchIconUrl(android.webkit.WebView,%20java.lang.String,%20boolean)',
    ),
  ],
)
final void Function(T controller, WebUri url, bool precomposed)?
onReceivedTouchIconUrl;