isScrolled property

bool isScrolled

Implementation

bool get isScrolled => scrollControllers.map<double>((e){
  try{
    return e.offset;
  }catch(e){
    return 0.0;
  }
}).reduce((value, offset) => value + offset) > 0;