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

Unified Diff: sky/sdk/example/stocks/lib/main.dart

Issue 1217113002: Very minor clean-up of stocks app main.dart. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 6 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/sdk/example/stocks/lib/main.dart
diff --git a/sky/sdk/example/stocks/lib/main.dart b/sky/sdk/example/stocks/lib/main.dart
index 78f02543d05086fdbba74d9f6fbdafeceb8f63e8..aa8f24310cd2e76c1c80e119d9dedae6b7dde2a6 100644
--- a/sky/sdk/example/stocks/lib/main.dart
+++ b/sky/sdk/example/stocks/lib/main.dart
@@ -2,7 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-import 'package:sky/rendering/sky_binding.dart';
import 'package:sky/theme/colors.dart' as colors;
import 'package:sky/theme/theme_data.dart';
import 'package:sky/widgets/basic.dart';
@@ -61,7 +60,7 @@ class StocksApp extends App {
});
}
- Widget build() {
+ Widget build() {
ThemeData theme;
if (stockMode == StockMode.optimistic) {
@@ -79,7 +78,7 @@ class StocksApp extends App {
return new Theme(
data: theme,
- child: new Navigator(_navigationState)
+ child: new Navigator(_navigationState)
);
}
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698