Simulate constructor

const Simulate({
  1. Key? key,
  2. required GeneralLibFlutterApp generalLibFlutterApp,
  3. AlignmentGeometry alignment = Alignment.center,
  4. Orientation? orientation,
  5. bool isShowExperimental = false,
  6. EdgeInsets? paddingFrame,
  7. GlobalKey<State<StatefulWidget>>? allBodyKey,
  8. GlobalKey<State<StatefulWidget>>? frameBodyKey,
  9. required Widget home,
  10. Widget customView(
    1. BuildContext context,
    2. Widget home,
    3. DeviceInfo deviceInfo
    )?,
  11. DeviceInfo? deviceDefault,
  12. bool isShowFrame = kDebugMode,
  13. bool isShowTopFrame = true,
})

Implementation

const Simulate({
  super.key,
  required this.generalLibFlutterApp,
  this.alignment = Alignment.center,
  this.orientation,
  this.isShowExperimental = false,
  this.paddingFrame,
  this.allBodyKey,
  this.frameBodyKey,
  required this.home,
  this.customView,
  this.deviceDefault,
  this.isShowFrame = kDebugMode,
  this.isShowTopFrame = true,
});