Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(50)

Side by Side Diff: sky/sdk/example/fitness/lib/settings.dart

Issue 1226113007: Add @override annotation to known overriden methods (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « sky/sdk/example/fitness/lib/main.dart ('k') | sky/sdk/example/game/lib/action.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « sky/sdk/example/fitness/lib/main.dart ('k') | sky/sdk/example/game/lib/action.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698