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