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

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

Issue 1166203002: Rename Container's desiredSize argument to width and height arguments. (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 '../fn2.dart';
6 import 'button_base.dart'; 6 import 'button_base.dart';
7 import 'icon.dart'; 7 import 'icon.dart';
8 import 'ink_well.dart'; 8 import 'ink_well.dart';
9 9
10 class MenuItem extends ButtonBase { 10 class MenuItem extends ButtonBase {
(...skipping 22 matching lines...) Expand all
33 child: new FlexContainer( 33 child: new FlexContainer(
34 direction: FlexDirection.horizontal, 34 direction: FlexDirection.horizontal,
35 children: children 35 children: children
36 ), 36 ),
37 padding: const EdgeDims.symmetric(horizontal: 16.0) 37 padding: const EdgeDims.symmetric(horizontal: 16.0)
38 ), 38 ),
39 1 39 1
40 ) 40 )
41 ] 41 ]
42 ), 42 ),
43 desiredSize: const Size.fromHeight(48.0), 43 height: 48.0,
44 decoration: highlight ? highlightDecoration : null 44 decoration: highlight ? highlightDecoration : null
45 ), 45 ),
46 onGestureTap: onGestureTap 46 onGestureTap: onGestureTap
47 ); 47 );
48 } 48 }
49 } 49 }
OLDNEW
« no previous file with comments | « sky/sdk/lib/framework/components2/menu_divider.dart ('k') | sky/sdk/lib/framework/components2/radio.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698