MacosScaffold constructor

const MacosScaffold({
  1. Key? key,
  2. List<Widget> children = const <Widget>[],
  3. ToolBar? toolBar,
  4. Color? backgroundColor,
})

Creates a macOS page layout.

The children can only include one ContentArea, but can include multiple ResizablePane widgets.

Implementation

const MacosScaffold({
  super.key,
  this.children = const <Widget>[],
  this.toolBar,
  this.backgroundColor,
});