| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |