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

Side by Side Diff: sky/sdk/lib/framework/components2/ink_well.dart

Issue 1181533002: Rename BlockContainer, StackContainer, and FlexContainer (Closed) Base URL: git@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 '../animation/animated_value.dart'; 5 import '../animation/animated_value.dart';
6 import '../animation/curves.dart'; 6 import '../animation/curves.dart';
7 import '../fn2.dart'; 7 import '../fn2.dart';
8 import '../rendering/box.dart'; 8 import '../rendering/box.dart';
9 import '../rendering/flex.dart'; 9 import '../rendering/flex.dart';
10 import '../rendering/object.dart'; 10 import '../rendering/object.dart';
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 RenderInkWell createNode() => new RenderInkWell(); 109 RenderInkWell createNode() => new RenderInkWell();
110 } 110 }
111 111
112 class InkWell extends Component { 112 class InkWell extends Component {
113 InkWell({ Object key, this.children }) : super(key: key); 113 InkWell({ Object key, this.children }) : super(key: key);
114 114
115 final List<UINode> children; 115 final List<UINode> children;
116 116
117 UINode build() { 117 UINode build() {
118 return new InkWellWrapper( 118 return new InkWellWrapper(
119 child: new FlexContainer( 119 child: new Flex(
120 children,
120 direction: FlexDirection.horizontal, 121 direction: FlexDirection.horizontal,
121 justifyContent: FlexJustifyContent.center, 122 justifyContent: FlexJustifyContent.center
122 children: children
123 ) 123 )
124 ); 124 );
125 } 125 }
126 } 126 }
OLDNEW
« no previous file with comments | « sky/sdk/lib/framework/components2/fixed_height_scrollable.dart ('k') | sky/sdk/lib/framework/components2/input.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698