WindowNavigator constructor
const
WindowNavigator({})
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,
});