hologramAnimationImageTransformsIOS property

ViewContentMode? hologramAnimationImageTransformsIOS

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

Default: ViewContentMode.SCALE_ASPECT_FIT.

IOS only. For Android use hologramAnimationImageTransformsAndroid.

Implementation

ViewContentMode? get hologramAnimationImageTransformsIOS =>
    _hologramAnimationImageTransformsIOS;
void hologramAnimationImageTransformsIOS=(ViewContentMode? val)

Implementation

set hologramAnimationImageTransformsIOS(ViewContentMode? val) {
  _hologramAnimationImageTransformsIOS = val;
  _set({"hologramAnimationImageContentMode": val?.value});
}