Index: sky/framework/components/popup_menu_item.dart |
diff --git a/sky/framework/components/popup_menu_item.dart b/sky/framework/components/popup_menu_item.dart |
index 8ab395ae9d594dada86d09b80570575e52c69ada..b093577eea60d4b8954e95b07d7ed752d32e2afe 100644 |
--- a/sky/framework/components/popup_menu_item.dart |
+++ b/sky/framework/components/popup_menu_item.dart |
@@ -12,12 +12,12 @@ class PopupMenuItem extends Component { |
min-width: 112px; |
padding: 16px;'''); |
- List<Node> children; |
+ List<UINode> children; |
double opacity; |
PopupMenuItem({ Object key, this.children, this.opacity}) : super(key: key); |
- Node build() { |
+ UINode build() { |
return new StyleNode( |
new InkWell( |
inlineStyle: opacity == null ? null : 'opacity: ${opacity}', |