Commit eb4b3e4b authored by Michelle Dudley's avatar Michelle Dudley Committed by rami-a

Fix Shrine overscroll glow indicator (#27217)

parent 88d50f78
...@@ -37,6 +37,7 @@ class TwoProductCardColumn extends StatelessWidget { ...@@ -37,6 +37,7 @@ class TwoProductCardColumn extends StatelessWidget {
: 33 / 49; : 33 / 49;
return ListView( return ListView(
physics: const ClampingScrollPhysics(),
children: <Widget>[ children: <Widget>[
Padding( Padding(
padding: const EdgeInsetsDirectional.only(start: 28.0), padding: const EdgeInsetsDirectional.only(start: 28.0),
...@@ -71,6 +72,7 @@ class OneProductCardColumn extends StatelessWidget { ...@@ -71,6 +72,7 @@ class OneProductCardColumn extends StatelessWidget {
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return ListView( return ListView(
physics: const ClampingScrollPhysics(),
reverse: true, reverse: true,
children: <Widget>[ children: <Widget>[
const SizedBox( const SizedBox(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment