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

Unified Diff: sky/framework/components/menu_item.dart

Issue 1006053002: Allow Effen Styles to be extendable (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: sdfsd Created 5 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sky/framework/components/menu_divider.dart ('k') | sky/framework/components/radio.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/framework/components/menu_item.dart
diff --git a/sky/framework/components/menu_item.dart b/sky/framework/components/menu_item.dart
index fbbde9d5961ae8fe01fb1ffb972afa5fb909b946..4db0d001656a922c123985012f13ccbf6cc7dd44 100644
--- a/sky/framework/components/menu_item.dart
+++ b/sky/framework/components/menu_item.dart
@@ -43,15 +43,15 @@ class MenuItem extends ButtonBase {
Node build() {
return new Material (
- styles: [highlight ? _highlightStyle : _style],
+ style: highlight ? _highlightStyle : _style,
children: [
new Icon(
- styles: [_iconStyle],
+ style: _iconStyle,
size: 24,
type: "${icon}_grey600"
),
new Container(
- styles: [_labelStyle],
+ style: _labelStyle,
children: children
)
]
« no previous file with comments | « sky/framework/components/menu_divider.dart ('k') | sky/framework/components/radio.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698