Commit 260cfcdb authored by Matt Perry's avatar Matt Perry Committed by GitHub

Pesto: Prevent overscrolling on recipe page. (#5237)

BUG=https://github.com/flutter/flutter/issues/5098
parent 4a8dbb0e
......@@ -345,7 +345,9 @@ class _RecipePageState extends State<_RecipePage> {
)
)
),
new ScrollableViewport(
new ClampOverscrolls(
value: true,
child: new ScrollableViewport(
child: new RepaintBoundary(
child: new Padding(
padding: new EdgeInsets.only(top: appBarHeight),
......@@ -370,6 +372,7 @@ class _RecipePageState extends State<_RecipePage> {
)
)
)
)
]
);
}
......
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