DeviceFrameWrapper constructor

const DeviceFrameWrapper({
  1. Key? key,
  2. required Widget child,
  3. required DevicePreset device,
  4. DeviceOrientation orientation = DeviceOrientation.portrait,
  5. bool showBezel = true,
  6. Color? screenBackground,
  7. double? customScale,
  8. bool showGrid = false,
  9. bool showCenterGuides = false,
})

Implementation

const DeviceFrameWrapper({
  super.key,
  required this.child,
  required this.device,
  this.orientation = DeviceOrientation.portrait,
  this.showBezel = true,
  this.screenBackground,
  this.customScale,
  this.showGrid = false,
  this.showCenterGuides = false,
});