isGestureEnabled property

bool isGestureEnabled

Gestaure status

Implementation

bool get isGestureEnabled => _gesture;
void isGestureEnabled=(bool isEnable)

Change gesture status

Implementation

set isGestureEnabled(bool isEnable) {
  if (isGestureEnabled && isEnable) return;
  _gesture = isEnable;
}