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

Fixes https://github.com/flutter/flutter/issues/5711
This commit is contained in:
Matt Perry 2016-09-20 17:57:09 -04:00 committed by GitHub
parent 51960b4482
commit 278711d5b1

View file

@ -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)
);