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 {
: 33 / 49;
return ListView(
physics: const ClampingScrollPhysics(),
children: <Widget>[
Padding(
padding: const EdgeInsetsDirectional.only(start: 28.0),
......@@ -71,6 +72,7 @@ class OneProductCardColumn extends StatelessWidget {
@override
Widget build(BuildContext context) {
return ListView(
physics: const ClampingScrollPhysics(),
reverse: true,
children: <Widget>[
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