canScrollMore method

bool canScrollMore()

Implementation

bool canScrollMore() {
  if(AFibD.config.isWidgetTesterContext) {
    return false;
  }
  if(scrollables.isEmpty) {
    return false;
  }
  final scrollable = scrollables.first;
  return scrollable.canScrollMore();
}