onReceivedTouchIconUrl property
- @SupportedPlatforms.new(platforms: [AndroidPlatform(apiName: 'WebChromeClient.onReceivedTouchIconUrl', apiUrl: 'https://developer.android.com/reference/android/webkit/WebChromeClient#onReceivedTouchIconUrl(android.webkit.WebView,%20java.lang.String,%20boolean)')])
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:
- Android WebView (Official API - WebChromeClient.onReceivedTouchIconUrl)
Parameters - Officially Supported Platforms/Implementations:
url: all platformsprecomposed: 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;