AppComposer constructor

const AppComposer({
  1. Key? key,
  2. required Widget appBuilder(
    1. Composer layout
    ),
  3. DesignFrame? designFrame,
  4. ScaleMode scaleMode = ScaleMode.percent,
  5. AppOrientation orientation = AppOrientation.none,
  6. bool enableDebugLogging = false,
  7. FlutterExceptionHandler? onFlutterError,
  8. Widget ownErrorScreen(
    1. FlutterErrorDetails error
    )?,
  9. ErrorScreen errorScreen = ErrorScreen.dessert,
  10. bool pixelDebug = false,
  11. int gridCount = 12,
})

Implementation

const AppComposer({
  super.key,
  required this.appBuilder,
  this.designFrame,
  this.scaleMode = ScaleMode.percent,
  this.orientation = AppOrientation.none,
  this.enableDebugLogging = false,
  this.onFlutterError,
  this.ownErrorScreen,
  this.errorScreen = ErrorScreen.dessert,
  this.pixelDebug = false,
  this.gridCount = 12,
});