Skip to content

Instantly share code, notes, and snippets.

@Rahiche
Created December 18, 2018 21:41
Show Gist options
  • Save Rahiche/cba46e40c22527b70582957d8a3773cb to your computer and use it in GitHub Desktop.
Save Rahiche/cba46e40c22527b70582957d8a3773cb to your computer and use it in GitHub Desktop.
NotificationListener<ScrollEndNotification>(
onNotification: (end) {
if (animation.isDismissed) {
_controller.forward();
}
},
child: NotificationListener<ScrollStartNotification>(
onNotification: (start) {
if (animation.isCompleted) {
_controller.reverse();
}
},
child: ListView(...)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment