IosSystemOptions constructor

const IosSystemOptions({
  1. bool keepScreenOn = false,
  2. NativeOrientationLock orientationLock = NativeOrientationLock.system,
  3. String? pictureInPictureAspectRatio,
  4. bool prefersHomeIndicatorAutoHidden = false,
})

Creates iOS system customization options.

Implementation

const IosSystemOptions({
  this.keepScreenOn = false,
  this.orientationLock = NativeOrientationLock.system,
  this.pictureInPictureAspectRatio,
  this.prefersHomeIndicatorAutoHidden = false,
});