Commit 278711d5 authored by Matt Perry's avatar Matt Perry Committed by GitHub

Add an appbar shadow to Pesto's recipe page. (#5954)

Fixes https://github.com/flutter/flutter/issues/5711
parent 51960b44
......@@ -326,6 +326,17 @@ class _RecipePageState extends State<RecipePage> {
]
)
],
flexibleSpace: new FlexibleSpaceBar(
background: new DecoratedBox(
decoration: new BoxDecoration(
gradient: new LinearGradient(
begin: const FractionalOffset(0.5, 0.0),
end: const FractionalOffset(0.5, 0.40),
colors: <Color>[const Color(0x60000000), const Color(0x00000000)]
)
)
)
),
),
body: _buildContainer(context)
);
......
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