isEditing property

bool isEditing

Users can only edit the layout when isEditing is true. The isEditing does not have to be true to add or delete items.

Use as setter to change isEditing value.

Implementation

bool get isEditing => _layoutController!.isEditing;
void isEditing=(bool value)

Change editing status.

Implementation

set isEditing(bool value) {
  _layoutController!.isEditing = value;
}