| Index: sky/sdk/lib/framework/components2/popup_menu_item.dart
|
| diff --git a/sky/sdk/lib/framework/components2/popup_menu_item.dart b/sky/sdk/lib/framework/components2/popup_menu_item.dart
|
| index 8c5a4c8f9478e9e6637073be4cba99bad86940db..bf7d64d2757df67f590b1aa10672dee972efd4f6 100644
|
| --- a/sky/sdk/lib/framework/components2/popup_menu_item.dart
|
| +++ b/sky/sdk/lib/framework/components2/popup_menu_item.dart
|
| @@ -6,11 +6,11 @@ import '../fn2.dart';
|
| import 'ink_well.dart';
|
|
|
| class PopupMenuItem extends Component {
|
| + PopupMenuItem({ Object key, this.children, this.opacity}) : super(key: key);
|
| +
|
| List<UINode> children;
|
| double opacity;
|
|
|
| - PopupMenuItem({ Object key, this.children, this.opacity}) : super(key: key);
|
| -
|
| UINode build() {
|
| return new Container(
|
| constraints: const BoxConstraints(minWidth: 112.0),
|
|
|