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

Unified Diff: sky/examples/stocks-fn/stockrow.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/examples/stocks-fn/stockarrow.dart ('k') | sky/examples/stocks-fn/stocksapp.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/examples/stocks-fn/stockrow.dart
diff --git a/sky/examples/stocks-fn/stockrow.dart b/sky/examples/stocks-fn/stockrow.dart
index cacb3c0d891661e9029333df4f9d7fd2dcdadd7a..6eb9df648039df1e2b1914a16fdf5e35798ebe74 100644
--- a/sky/examples/stocks-fn/stockrow.dart
+++ b/sky/examples/stocks-fn/stockrow.dart
@@ -47,23 +47,23 @@ class StockRow extends Component {
),
new Container(
key: 'Ticker',
- styles: [_tickerStyle],
+ style: _tickerStyle,
children: [new Text(stock.symbol)]
),
new Container(
key: 'LastSale',
- styles: [_lastSaleStyle],
+ style: _lastSaleStyle,
children: [new Text(lastSale)]
),
new Container(
key: 'Change',
- styles: [_changeStyle],
+ style: _changeStyle,
children: [new Text(changeInPrice)]
)
];
return new Material(
- styles: [_style],
+ style: _style,
children: children
);
}
« no previous file with comments | « sky/examples/stocks-fn/stockarrow.dart ('k') | sky/examples/stocks-fn/stocksapp.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698