WindowWidget constructor
const
WindowWidget({
- Key? key,
- Widget? title,
- Widget? actions,
- Widget? content,
- bool resizable = true,
- bool draggable = true,
- bool closable = true,
- bool maximizable = true,
- bool minimizable = true,
- bool enableSnapping = true,
- required Rect bounds,
- Rect? maximized,
- bool minimized = false,
- BoxConstraints constraints = kDefaultWindowConstraints,
Implementation
const WindowWidget({
super.key,
this.title,
this.actions,
this.content,
bool this.resizable = true,
bool this.draggable = true,
bool this.closable = true,
bool this.maximizable = true,
bool this.minimizable = true,
bool this.enableSnapping = true,
required Rect this.bounds,
this.maximized,
bool this.minimized = false,
BoxConstraints this.constraints = kDefaultWindowConstraints,
}) : controller = null;