helpAnimationImageTransformsIOS property

ViewContentMode? helpAnimationImageTransformsIOS

Allows you to specify how a view of the help animation adjusts its content when its size changes.

Default: ViewContentMode.SCALE_ASPECT_FIT.

IOS only. For Android use helpAnimationImageTransformsAndroid.

Implementation

ViewContentMode? get helpAnimationImageTransformsIOS =>
    _helpAnimationImageTransformsIOS;
void helpAnimationImageTransformsIOS=(ViewContentMode? val)

Implementation

set helpAnimationImageTransformsIOS(ViewContentMode? val) {
  _helpAnimationImageTransformsIOS = val;
  _set({"helpAnimationImageContentMode": val?.value});
}