hide method

bool hide()

Implementation

bool hide() {
  if (!active || !mounted) return false;
  _hided = true;
  if (!shouldHide) return false;

  controller.reverse();

  return true;
}