| 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/widgets/basic.dart'; | 5 import 'package:sky/widgets/basic.dart'; |
| 6 import 'package:sky/widgets/switch.dart'; | 6 import 'package:sky/widgets/switch.dart'; |
| 7 import 'package:sky/widgets/icon_button.dart'; | 7 import 'package:sky/widgets/icon_button.dart'; |
| 8 import 'package:sky/widgets/material.dart'; | 8 import 'package:sky/widgets/material.dart'; |
| 9 import 'package:sky/widgets/menu_item.dart'; | 9 import 'package:sky/widgets/menu_item.dart'; |
| 10 import 'package:sky/widgets/navigator.dart'; | 10 import 'package:sky/widgets/navigator.dart'; |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 new Text('Height'), | 61 new Text('Height'), |
| 62 new Text("6'2\"", style: Theme.of(this).text.caption), | 62 new Text("6'2\"", style: Theme.of(this).text.caption), |
| 63 ]) | 63 ]) |
| 64 ] | 64 ] |
| 65 ), | 65 ), |
| 66 ]) | 66 ]) |
| 67 ) | 67 ) |
| 68 ); | 68 ); |
| 69 } | 69 } |
| 70 | 70 |
| 71 @override |
| 71 Widget build() { | 72 Widget build() { |
| 72 return new Scaffold( | 73 return new Scaffold( |
| 73 toolbar: buildToolBar(), | 74 toolbar: buildToolBar(), |
| 74 body: buildSettingsPane() | 75 body: buildSettingsPane() |
| 75 ); | 76 ); |
| 76 } | 77 } |
| 77 } | 78 } |
| OLD | NEW |