| 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 'dart:sky'; | 5 import 'dart:sky'; |
| 6 | 6 |
| 7 import 'package:mojom/intents/intents.mojom.dart'; | 7 import 'package:mojom/intents/intents.mojom.dart'; |
| 8 import 'package:sky/framework/shell.dart' as shell; | 8 import 'package:sky/framework/shell.dart' as shell; |
| 9 import 'package:sky/theme2/colors.dart' as colors; | 9 import 'package:sky/theme2/colors.dart' as colors; |
| 10 import 'package:sky/theme2/edges.dart'; | 10 import 'package:sky/theme2/edges.dart'; |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 children, | 72 children, |
| 73 direction: FlexDirection.vertical, | 73 direction: FlexDirection.vertical, |
| 74 justifyContent: FlexJustifyContent.spaceAround | 74 justifyContent: FlexJustifyContent.spaceAround |
| 75 ) | 75 ) |
| 76 ) | 76 ) |
| 77 ); | 77 ); |
| 78 } | 78 } |
| 79 } | 79 } |
| 80 | 80 |
| 81 void main() { | 81 void main() { |
| 82 new SkyHome(); | 82 runApp(new SkyHome()); |
| 83 } | 83 } |
| OLD | NEW |