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

Side by Side Diff: sky/examples/stocks-fn/stocksapp.dart

Issue 987613002: Make stocksapp.dart almost pass the dart analyzer. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: 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 unified diff | Download patch
« no previous file with comments | « sky/examples/fn/widgets/material.dart ('k') | sky/framework/fn.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 library stocksapp; 1 library stocksapp;
2 2
3 import '../../framework/fn.dart'; 3 import '../../framework/fn.dart';
4 import '../data/stocks.dart'; 4 import '../data/stocks.dart';
5 import '../fn/widgets/widgets.dart'; 5 import '../fn/widgets/widgets.dart';
6 import 'dart:collection';
7 import 'dart:math'; 6 import 'dart:math';
8 import 'dart:sky' as sky;
9 7
10 part 'stockarrow.dart'; 8 part 'stockarrow.dart';
11 part 'stocklist.dart'; 9 part 'stocklist.dart';
12 part 'stockrow.dart'; 10 part 'stockrow.dart';
13 11
14 class StocksApp extends App { 12 class StocksApp extends App {
15 13
16 DrawerAnimation _drawerAnimation = new DrawerAnimation(); 14 DrawerAnimation _drawerAnimation = new DrawerAnimation();
17 15
18 static Style _style = new Style(''' 16 static Style _style = new Style('''
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 key: 'Content', 94 key: 'Content',
97 style: _style, 95 style: _style,
98 children: [toolbar, new Stocklist(stocks: oracle.stocks)] 96 children: [toolbar, new Stocklist(stocks: oracle.stocks)]
99 ), 97 ),
100 fab, 98 fab,
101 drawer, 99 drawer,
102 ] 100 ]
103 ); 101 );
104 } 102 }
105 } 103 }
OLDNEW
« no previous file with comments | « sky/examples/fn/widgets/material.dart ('k') | sky/framework/fn.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698