| Index: sky/sdk/lib/widgets/popup_menu.dart
|
| diff --git a/sky/sdk/lib/widgets/popup_menu.dart b/sky/sdk/lib/widgets/popup_menu.dart
|
| index bf357eece3917eefdeef1d56a1781fbc1d208ba2..759e52d9c972a65c015c9519cc9e1e4dc6dfb99d 100644
|
| --- a/sky/sdk/lib/widgets/popup_menu.dart
|
| +++ b/sky/sdk/lib/widgets/popup_menu.dart
|
| @@ -73,6 +73,7 @@ class PopupMenu extends AnimatedComponent {
|
| List<PopupMenuItem> items;
|
| int level;
|
|
|
| + @override
|
| void syncFields(PopupMenu source) {
|
| controller = source.controller;
|
| items = source.items;
|
| @@ -93,6 +94,7 @@ class PopupMenu extends AnimatedComponent {
|
| return math.max(0.0, math.min(1.0, (controller.position.value - start) / duration));
|
| }
|
|
|
| + @override
|
| Widget build() {
|
| int i = 0;
|
| List<Widget> children = new List.from(items.map((Widget item) {
|
|
|