| OLD | NEW |
| 1 library stocksapp; | 1 library stocksapp; |
| 2 | 2 |
| 3 import '../../framework/fn.dart'; | 3 import '../../framework/fn.dart'; |
| 4 import '../../framework/components/drawer.dart'; |
| 5 import '../../framework/components/drawer_header.dart'; |
| 6 import '../../framework/components/fixed_height_scrollable.dart'; |
| 7 import '../../framework/components/floating_action_button.dart'; |
| 8 import '../../framework/components/icon.dart'; |
| 9 import '../../framework/components/material.dart'; |
| 10 import '../../framework/components/menu_divider.dart'; |
| 11 import '../../framework/components/menu_item.dart'; |
| 12 import '../../framework/components/toolbar.dart'; |
| 4 import '../data/stocks.dart'; | 13 import '../data/stocks.dart'; |
| 5 import '../fn/widgets/widgets.dart'; | |
| 6 import 'dart:math'; | 14 import 'dart:math'; |
| 7 | 15 |
| 8 part 'stockarrow.dart'; | 16 part 'stockarrow.dart'; |
| 9 part 'stocklist.dart'; | 17 part 'stocklist.dart'; |
| 10 part 'stockrow.dart'; | 18 part 'stockrow.dart'; |
| 11 | 19 |
| 12 class StocksApp extends App { | 20 class StocksApp extends App { |
| 13 | 21 |
| 14 DrawerAnimation _drawerAnimation = new DrawerAnimation(); | 22 DrawerAnimation _drawerAnimation = new DrawerAnimation(); |
| 15 | 23 |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 key: 'Content', | 107 key: 'Content', |
| 100 style: _style, | 108 style: _style, |
| 101 children: [toolbar, new Stocklist(stocks: _sortedStocks)] | 109 children: [toolbar, new Stocklist(stocks: _sortedStocks)] |
| 102 ), | 110 ), |
| 103 fab, | 111 fab, |
| 104 drawer, | 112 drawer, |
| 105 ] | 113 ] |
| 106 ); | 114 ); |
| 107 } | 115 } |
| 108 } | 116 } |
| OLD | NEW |