CarpenterAppFrame constructor

const CarpenterAppFrame({
  1. Key? key,
  2. required Widget child,
  3. CarpenterTopPanelBuilder? topPanelBuilder,
  4. CarpenterTopPanelBuilder? desktopTopPanelBuilder,
  5. TargetPlatform? targetPlatform,
  6. bool useSafeArea = true,
  7. EdgeInsetsGeometry? padding,
  8. Color? backgroundColor,
})

Создает app-frame.

Implementation

const CarpenterAppFrame({
  super.key,
  required this.child,
  this.topPanelBuilder,
  this.desktopTopPanelBuilder,
  this.targetPlatform,
  this.useSafeArea = true,
  this.padding,
  this.backgroundColor,
});