| Index: sky/sdk/lib/framework/components2/tool_bar.dart
|
| diff --git a/sky/sdk/lib/framework/components2/tool_bar.dart b/sky/sdk/lib/framework/components2/tool_bar.dart
|
| index b3ab89ec652565ec84d956c8500314c6d2cde72e..395d6c5156f844299027a902b46c43cf881c99c0 100644
|
| --- a/sky/sdk/lib/framework/components2/tool_bar.dart
|
| +++ b/sky/sdk/lib/framework/components2/tool_bar.dart
|
| @@ -4,7 +4,7 @@
|
|
|
| import '../fn2.dart';
|
| import '../theme/view_configuration.dart';
|
| -// import 'material.dart';
|
| +import '../theme2/shadows.dart';
|
|
|
| class ToolBar extends Component {
|
| UINode left;
|
| @@ -40,7 +40,10 @@ class ToolBar extends Component {
|
| ),
|
| height: 56.0,
|
| padding: new EdgeDims(kStatusBarHeight.toDouble(), 8.0, 0.0, 8.0),
|
| - decoration: new BoxDecoration(backgroundColor: backgroundColor)
|
| + decoration: new BoxDecoration(
|
| + backgroundColor: backgroundColor,
|
| + boxShadow: Shadow[2]
|
| + )
|
| );
|
| }
|
| }
|
|
|