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

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

Issue 1027813002: Introduce Scaffold to Sky framework (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/floating_action_button.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/scaffold.dart
diff --git a/sky/framework/components/scaffold.dart b/sky/framework/components/scaffold.dart
new file mode 100644
index 0000000000000000000000000000000000000000..60de2fb6850491748d0b8431cf0cec09d2e805a1
--- /dev/null
+++ b/sky/framework/components/scaffold.dart
@@ -0,0 +1,74 @@
+// 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 'action_bar.dart';
+import 'drawer.dart';
+import 'floating_action_button.dart';
+import 'package:sky/framework/theme/typography.dart' as typography;
+
+class Scaffold extends Component {
+ static final Style _style = new Style('''
+ ${typography.typeface};
+ ${typography.black.body1};''');
+
+ static final Style _mainStyle = new Style('''
+ display: flex;
+ flex-direction: column;
+ height: -webkit-fill-available;''');
+
+ static final Style _contentStyle = new Style('''
+ flex: 1;''');
+
+ static final Style _fabStyle = new Style('''
+ position: absolute;
+ bottom: 16px;
+ right: 16px;''');
+
+ static final Style _drawerStyle = new Style('''
+ position: absolute;
+ top: 0;
+ left: 0;
+ bottom: 0;
+ right: 0;''');
+
+ ActionBar actionBar;
+ Node content;
+ FloatingActionButton fab;
+ Drawer drawer;
+ List<Node> overlays;
+
+ Scaffold({
+ Object key,
+ this.actionBar,
+ this.content,
+ this.fab,
+ this.drawer,
+ this.overlays
+ }) : super(key: key);
+
+ Node build() {
+ var children = [
+ new Container(
+ key: 'Main',
+ style: _mainStyle,
+ children: [
+ actionBar,
+ new StyleNode(content, _contentStyle)
+ ]
+ ),
+ ];
+
+ if (fab != null)
+ children.add(new StyleNode(fab, _fabStyle));
+
+ if (drawer != null)
+ children.add(new StyleNode(drawer, _drawerStyle));
+
+ if (overlays != null)
+ children.addAll(overlays);
+
+ return new Container(style: _style, children: children);
+ }
+}
« no previous file with comments | « sky/framework/components/floating_action_button.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698