MacosWindow constructor

const MacosWindow({
  1. Key? key,
  2. Widget? child,
  3. Sidebar? sidebar,
  4. Color? backgroundColor,
})

Creates a macOS window layout with a sidebar on the left.

The child widget is typically a MacosScaffold which fills the rest of the screen.

Implementation

const MacosWindow({
  Key? key,
  this.child,
  this.sidebar,
  this.backgroundColor,
}) : super(key: key);