WindowNavigator constructor

const WindowNavigator({
  1. Key? key,
  2. required List<Window> initialWindows,
  3. Widget? child,
  4. bool showTopSnapBar = true,
})

Creates a WindowNavigator.

Parameters:

  • initialWindows (List<Window>, required): Windows to display initially.
  • child (Widget?, optional): Background widget.
  • showTopSnapBar (bool, default: true): Show snap bar.

Implementation

const WindowNavigator({
  super.key,
  required this.initialWindows,
  this.child,
  this.showTopSnapBar = true,
});