Merge pull request #473 from HansMuller/tabs_elevation

Corrected Card resting elevation, tabs example toolbar

Fixes #411
This commit is contained in:
Hans Muller 2015-11-18 15:13:03 -08:00
commit 57bbc496ca
2 changed files with 3 additions and 2 deletions

View File

@ -125,7 +125,8 @@ class TabbedNavigatorAppState extends State<TabbedNavigatorApp> {
assert(selectedIndices.length == 5);
ToolBar toolbar = new ToolBar(
center: new Text('Tabbed Navigator', style: Typography.white.title)
center: new Text('Tabbed Navigator', style: Typography.white.title),
elevation: 0
);
return new Scaffold(

View File

@ -23,7 +23,7 @@ class Card extends StatelessComponent {
child: new Material(
color: color,
type: MaterialType.card,
elevation: 8,
elevation: 2,
child: child
)
);