NiceWindowManager constructor

const NiceWindowManager({
  1. Key? key,
  2. List<NiceManagedWindow> windows = const [],
  3. _TaskbarPosition taskbarPosition = _TaskbarPosition.bottom,
  4. bool showTaskbar = true,
  5. void onWindowClose(
    1. String id
    )?,
  6. void onWindowFocus(
    1. String id
    )?,
  7. Widget? child,
})

Implementation

const NiceWindowManager({
  super.key,
  this.windows = const [],
  this.taskbarPosition = _TaskbarPosition.bottom,
  this.showTaskbar = true,
  this.onWindowClose,
  this.onWindowFocus,
  this.child,
});