I have a ListView.separated
widget which is not showing the overscroll effect for Android. On iOS I can see the bouncing, but on Android is not showing the glowing effect, and I don't know why.
My purpose is to have the glowing effect for Android.
Here is a piece of my code structure:
SafeArea(
child: LayoutBuilder(
builder: (context, constraints) {
return Container(
...
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
...
ListView.separated(...)
],
],
),
);
},
),
I use Flutter 2.8.1 version.