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

Side by Side Diff: sky/sdk/lib/framework/components/floating_action_button.dart

Issue 1150433002: Add library names to many sky libraries (Closed) Base URL: git@github.com:domokit/mojo.git@fix_shelldb
Patch Set: Created 5 years, 7 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 library components_floating_action_button;
6
5 import '../fn.dart'; 7 import '../fn.dart';
6 import '../theme/colors.dart'; 8 import '../theme/colors.dart';
7 import 'ink_well.dart'; 9 import 'ink_well.dart';
8 import 'material.dart'; 10 import 'material.dart';
9 11
10 class FloatingActionButton extends Component { 12 class FloatingActionButton extends Component {
11 // TODO(abarth): We need a better way to become a container for absolutely 13 // TODO(abarth): We need a better way to become a container for absolutely
12 // positioned elements. 14 // positioned elements.
13 static final Style _style = new Style(''' 15 static final Style _style = new Style('''
14 width: 56px; 16 width: 56px;
(...skipping 23 matching lines...) Expand all
38 if (content != null) 40 if (content != null)
39 children.add(content); 41 children.add(content);
40 42
41 return new Material( 43 return new Material(
42 content: new Container( 44 content: new Container(
43 style: _style, 45 style: _style,
44 children: [new StyleNode(new InkWell(children: children), _clipStyle)]), 46 children: [new StyleNode(new InkWell(children: children), _clipStyle)]),
45 level: level); 47 level: level);
46 } 48 }
47 } 49 }
OLDNEW
« no previous file with comments | « sky/sdk/lib/framework/components/fixed_height_scrollable.dart ('k') | sky/sdk/lib/framework/components/icon.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698