Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(321)

Unified Diff: sky/framework/components/toolbar.dart

Issue 1010913002: Rename Sky's Toolbar to ActionBar (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sky/framework/components/action_bar.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/framework/components/toolbar.dart
diff --git a/sky/framework/components/toolbar.dart b/sky/framework/components/toolbar.dart
deleted file mode 100644
index 9b5487689d0755e7829d4c062e6da46866fd7a9d..0000000000000000000000000000000000000000
--- a/sky/framework/components/toolbar.dart
+++ /dev/null
@@ -1,31 +0,0 @@
-// Copyright 2015 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-import '../fn.dart';
-import '../theme/colors.dart';
-import '../theme/shadows.dart';
-import '../theme/view-configuration.dart';
-
-class Toolbar extends Component {
- List<Node> children;
-
- static final Style _style = new Style('''
- display: flex;
- align-items: center;
- height: 56px;
- background-color: ${Purple[500]};
- color: white;
- padding-top: ${kStatusBarHeight}px;
- box-shadow: ${Shadow[2]};'''
- );
-
- Toolbar({String key, this.children}) : super(key: key);
-
- Node build() {
- return new Container(
- style: _style,
- children: children
- );
- }
-}
« no previous file with comments | « sky/framework/components/action_bar.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698