isPanelShown property

bool isPanelShown

Returns whether or not the panel is shown/hidden.

Implementation

bool get isPanelShown {
  assert(isAttached, "PanelController must be attached to a SlidingUpPanel");
  return _panelState!._isPanelShown;
}