| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 import 'package:sky/theme/colors.dart' as colors; | 5 import 'package:sky/theme/colors.dart' as colors; |
| 6 import 'package:sky/theme/theme_data.dart'; | |
| 7 import 'package:sky/widgets/basic.dart'; | 6 import 'package:sky/widgets/basic.dart'; |
| 8 import 'package:sky/widgets/navigator.dart'; | 7 import 'package:sky/widgets/navigator.dart'; |
| 9 import 'package:sky/widgets/theme.dart'; | 8 import 'package:sky/widgets/theme.dart'; |
| 10 import 'package:sky/widgets/widget.dart'; | 9 import 'package:sky/widgets/widget.dart'; |
| 11 | 10 |
| 12 import 'stock_data.dart'; | 11 import 'stock_data.dart'; |
| 13 import 'stock_home.dart'; | 12 import 'stock_home.dart'; |
| 14 import 'stock_settings.dart'; | 13 import 'stock_settings.dart'; |
| 15 import 'stock_types.dart'; | 14 import 'stock_types.dart'; |
| 16 | 15 |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 return new Theme( | 78 return new Theme( |
| 80 data: theme, | 79 data: theme, |
| 81 child: new Navigator(_navigationState) | 80 child: new Navigator(_navigationState) |
| 82 ); | 81 ); |
| 83 } | 82 } |
| 84 } | 83 } |
| 85 | 84 |
| 86 void main() { | 85 void main() { |
| 87 runApp(new StocksApp()); | 86 runApp(new StocksApp()); |
| 88 } | 87 } |
| OLD | NEW |