onGeolocationPermissionsShowPrompt property
Future<GeolocationPermissionShowPromptResponse?> Function(T controller, String origin)?
onGeolocationPermissionsShowPrompt
final
Event that notifies the host application that web content from the specified origin is attempting to use the Geolocation API, but no permission state is currently set for that origin.
Note that for applications targeting Android N and later SDKs (API level > Build.VERSION_CODES.M
) this method is only called for requests originating from secure origins such as https.
On non-secure origins geolocation requests are automatically denied.
origin
represents the origin of the web content attempting to use the Geolocation API.
Officially Supported Platforms/Implementations:
- Android native WebView (Official API - WebChromeClient.onGeolocationPermissionsShowPrompt)
Implementation
final Future<GeolocationPermissionShowPromptResponse?> Function(
T controller, String origin)? onGeolocationPermissionsShowPrompt;