mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
Fix Shrine overscroll glow indicator (#27217)
This commit is contained in:
parent
88d50f78f3
commit
eb4b3e4b62
@ -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(
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user