atScrollBottom property
bool
get
atScrollBottom
Return whether the view is currently scrolled to the bottom.
Implementation
bool get atScrollBottom {
final pos = position;
return pos.pixels == pos.maxScrollExtent;
}