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