| OLD | NEW |
| 1 library stocksapp; | 1 library stocksapp; |
| 2 | 2 |
| 3 import '../data/stocks.dart'; |
| 3 import '../fn/lib/fn.dart'; | 4 import '../fn/lib/fn.dart'; |
| 4 import '../fn/widgets/widgets.dart'; | 5 import '../fn/widgets/widgets.dart'; |
| 5 import 'dart:collection'; | 6 import 'dart:collection'; |
| 6 import 'dart:math'; | 7 import 'dart:math'; |
| 7 import 'dart:sky' as sky; | 8 import 'dart:sky' as sky; |
| 8 | 9 |
| 9 part 'companylist.dart'; | |
| 10 part 'stockarrow.dart'; | 10 part 'stockarrow.dart'; |
| 11 part 'stocklist.dart'; | 11 part 'stocklist.dart'; |
| 12 part 'stockrow.dart'; | 12 part 'stockrow.dart'; |
| 13 | 13 |
| 14 class StocksApp extends App { | 14 class StocksApp extends App { |
| 15 | 15 |
| 16 DrawerAnimation _drawerAnimation = new DrawerAnimation(); | 16 DrawerAnimation _drawerAnimation = new DrawerAnimation(); |
| 17 | 17 |
| 18 static Style _style = new Style(''' | 18 static Style _style = new Style(''' |
| 19 display: flex; | 19 display: flex; |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 key: 'Content', | 96 key: 'Content', |
| 97 style: _style, | 97 style: _style, |
| 98 children: [toolbar, new Stocklist(stocks: oracle.stocks)] | 98 children: [toolbar, new Stocklist(stocks: oracle.stocks)] |
| 99 ), | 99 ), |
| 100 fab, | 100 fab, |
| 101 drawer, | 101 drawer, |
| 102 ] | 102 ] |
| 103 ); | 103 ); |
| 104 } | 104 } |
| 105 } | 105 } |
| OLD | NEW |