Skip to content

Instantly share code, notes, and snippets.

@JuliusNM
Created July 18, 2019 06:00
Show Gist options
  • Save JuliusNM/2eaf277361932f16b8338c943ee8c98f to your computer and use it in GitHub Desktop.
Save JuliusNM/2eaf277361932f16b8338c943ee8c98f to your computer and use it in GitHub Desktop.
bool get hasScrolledBody {
for (_NestedScrollPosition position in _innerPositions) {
if (
position.minScrollExtent != null &&
position.pixels != null &&
position.pixels > position.minScrollExtent
) {
return true;
}
}
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment