I have the following example (tested on an iPhone X, iOS 11):
import \'package:flutter/material.dart\'; void main() => runApp(new MyApp()); class MyApp exte
I think this solution is better without CustomScrollView. Just use NotificationListener to wrap the ListView.
Widget noti = new NotificationListener( child:listView, onNotification: (ScrollNotification note){ print(note.metrics.pixels.toInt()); }, );
I have test it , Bounce is effective