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

Unified Diff: sky/sdk/lib/framework/widgets/drawer_header.dart

Issue 1177383006: Rename all the things (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: fix imports Created 5 years, 6 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
Index: sky/sdk/lib/framework/widgets/drawer_header.dart
diff --git a/sky/sdk/lib/framework/widgets/drawer_header.dart b/sky/sdk/lib/framework/widgets/drawer_header.dart
deleted file mode 100644
index a596b17b31b54ab1e1c8d407960e716e251e9ace..0000000000000000000000000000000000000000
--- a/sky/sdk/lib/framework/widgets/drawer_header.dart
+++ /dev/null
@@ -1,41 +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 '../theme2/colors.dart';
-import '../theme2/view_configuration.dart';
-import 'basic.dart';
-
-class DrawerHeader extends Component {
-
- DrawerHeader({ Object key, this.children }) : super(key: key);
-
- final List<UINode> children;
-
- UINode build() {
- return new Container(
- height: kStatusBarHeight + kMaterialDrawerHeight,
- decoration: new BoxDecoration(
- backgroundColor: BlueGrey[50],
- border: const Border(
- bottom: const BorderSide(
- color: const Color(0xFFD1D9E1),
- width: 1.0
- )
- )
- ),
- padding: const EdgeDims.only(bottom: 7.0),
- margin: const EdgeDims.only(bottom: 8.0),
- child: new Flex([
- new FlexExpandingChild(new Container(key: 'drawer-header-spacer')),
- new Container(
- key: 'drawer-header-label',
- padding: const EdgeDims.symmetric(horizontal: 16.0),
- child: new Flex(children, direction: FlexDirection.horizontal)
- )],
- direction: FlexDirection.vertical
- )
- );
- }
-
-}
« no previous file with comments | « sky/sdk/lib/framework/widgets/drawer.dart ('k') | sky/sdk/lib/framework/widgets/fixed_height_scrollable.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698