androidOnScaleChanged property

  1. @SupportedPlatforms.new(platforms: [AndroidPlatform()])
  2. @Deprecated('Use onZoomScaleChanged instead')
void Function(T controller, double oldScale, double newScale)? androidOnScaleChanged
final

Use onZoomScaleChanged instead.

Officially Supported Platforms/Implementations:

  • Android WebView

Parameters - Officially Supported Platforms/Implementations:

  • oldScale: all platforms
  • newScale: all platforms

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

Implementation

@SupportedPlatforms(platforms: [AndroidPlatform()])
@Deprecated('Use onZoomScaleChanged instead')
final void Function(T controller, double oldScale, double newScale)?
androidOnScaleChanged;