draggable property
bool
get
draggable
Whether the window can be moved by dragging the title bar.
Implementation
bool get draggable => value.draggable;
set
draggable
(bool value)
Sets whether the window can be dragged.
Implementation
set draggable(bool value) {
if (value == draggable) return;
this.value = this.value.copyWith(draggable: () => value);
}