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

Unified Diff: sky/examples/stocks/lib/stock_app.dart

Issue 1099203002: [Effen] fix warnings (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 8 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 | « no previous file | sky/examples/stocks/lib/stock_data.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/examples/stocks/lib/stock_app.dart
diff --git a/sky/examples/stocks/lib/stock_app.dart b/sky/examples/stocks/lib/stock_app.dart
index 9542d53999143118d59570e95c550b2ab68af0cd..f78dadda157a7c08198b38ee566308cbb258423e 100644
--- a/sky/examples/stocks/lib/stock_app.dart
+++ b/sky/examples/stocks/lib/stock_app.dart
@@ -14,7 +14,6 @@ import 'package:sky/framework/components/menu_item.dart';
import 'package:sky/framework/components/modal_overlay.dart';
import 'package:sky/framework/components/popup_menu.dart';
import 'package:sky/framework/components/scaffold.dart';
-import 'package:sky/framework/debug/tracing.dart';
import 'package:sky/framework/fn.dart';
import 'package:sky/framework/theme/typography.dart' as typography;
import 'package:sky/framework/theme/colors.dart';
@@ -35,14 +34,12 @@ class StocksApp extends App {
static final Style _titleStyle = new Style('''
${typography.white.title};''');
- StockDataFetcher _stockDataFetcher;
List<Stock> _stocks = [];
bool _isSearching = false;
- bool _isShowingMenu = false;
String _searchQuery;
StocksApp() : super() {
- _stockDataFetcher = new StockDataFetcher((StockData data) {
+ new StockDataFetcher((StockData data) {
setState(() {
data.appendTo(_stocks);
});
« no previous file with comments | « no previous file | sky/examples/stocks/lib/stock_data.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698