MacosScaffold constructor

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

Creates a macOS page layout.

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

Implementation

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