Skip to content

Instantly share code, notes, and snippets.

@ponnamkarthik
Last active December 22, 2018 07:22
Show Gist options
  • Save ponnamkarthik/7fd578ba1ad79763a0a1f72c81680a07 to your computer and use it in GitHub Desktop.
Save ponnamkarthik/7fd578ba1ad79763a0a1f72c81680a07 to your computer and use it in GitHub Desktop.
NotificationListner
NotificationListener<ScrollNotification>(
onNotification: (ScrollNotification scrollInfo) {
if (scrollInfo.metrics.pixels ==
scrollInfo.metrics.maxScrollExtent) {
loadMore();
}
},
child: ListView.builder(
// ...
),
),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment