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

Side by Side Diff: sky/sdk/lib/framework/widgets/material.dart

Issue 1177243002: Refactor fn2.dart, since it breached our 1000-line threshold. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 import '../fn2.dart'; 5 import 'wrappers.dart';
6 import '../theme/shadows.dart';
7 6
8 class Material extends Component { 7 class Material extends Component {
9 8
10 Material({ Object key, this.content, this.level: 0 }) : super(key: key); 9 Material({ Object key, this.content, this.level: 0 }) : super(key: key);
11 10
12 // static final List<Style> _shadowStyle = [ 11 // static final List<Style> _shadowStyle = [
13 // null, 12 // null,
14 // new Style('box-shadow: ${Shadow[1]}'), 13 // new Style('box-shadow: ${Shadow[1]}'),
15 // new Style('box-shadow: ${Shadow[2]}'), 14 // new Style('box-shadow: ${Shadow[2]}'),
16 // new Style('box-shadow: ${Shadow[3]}'), 15 // new Style('box-shadow: ${Shadow[3]}'),
17 // new Style('box-shadow: ${Shadow[4]}'), 16 // new Style('box-shadow: ${Shadow[4]}'),
18 // new Style('box-shadow: ${Shadow[5]}'), 17 // new Style('box-shadow: ${Shadow[5]}'),
19 // ]; 18 // ];
20 19
21 final UINode content; 20 final UINode content;
22 final int level; 21 final int level;
23 22
24 UINode build() { 23 UINode build() {
25 // TODO(eseidel): Add a shadow. 24 // TODO(eseidel): Add a shadow.
26 // return new StyleNode(content, _shadowStyle[level]); 25 // return new StyleNode(content, _shadowStyle[level]);
27 return content; 26 return content;
28 } 27 }
29 28
30 } 29 }
OLDNEW
« no previous file with comments | « sky/sdk/lib/framework/widgets/ink_well.dart ('k') | sky/sdk/lib/framework/widgets/menu_divider.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698