canScrollDown property

bool get canScrollDown

Whether there is more content below the current viewport.

Implementation

bool get canScrollDown => elements.any(
  (e) =>
      e.type == UiElementType.scrollable &&
      e.availableActions.contains('scrollDown'),
);