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

Side by Side Diff: sky/sdk/lib/framework/editing2/input.dart

Issue 1177243002: Refactor fn2.dart, since it breached our 1000-line threshold. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 6 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/lib/framework/editing2/editable_text.dart ('k') | sky/sdk/lib/framework/fn.md » ('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 '../editing2/editable_string.dart'; 5 import 'dart:sky' as sky;
6 import '../editing2/editable_text.dart'; 6
7 import '../editing2/keyboard.dart';
8 import '../fn2.dart';
9 import '../theme2/colors.dart';
10 import '../theme2/typography.dart' as typography;
11 import '../rendering/flex.dart'; 7 import '../rendering/flex.dart';
12 import 'dart:sky' as sky; 8 import '../widgets/wrappers.dart';
9 import 'editable_string.dart';
10 import 'editable_text.dart';
11 import 'keyboard.dart';
13 12
14 typedef void ValueChanged(value); 13 typedef void ValueChanged(value);
15 14
16 class Input extends Component { 15 class Input extends Component {
17 16
18 Input({Object key, 17 Input({Object key,
19 this.placeholder, 18 this.placeholder,
20 this.onChanged, 19 this.onChanged,
21 this.focused}) 20 this.focused})
22 : super(key: key, stateful: true) { 21 : super(key: key, stateful: true) {
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 ); 95 );
97 } 96 }
98 97
99 void didUnmount() { 98 void didUnmount() {
100 if (_isAttachedToKeyboard) 99 if (_isAttachedToKeyboard)
101 keyboard.hide(); 100 keyboard.hide();
102 super.didUnmount(); 101 super.didUnmount();
103 } 102 }
104 103
105 } 104 }
OLDNEW
« no previous file with comments | « sky/sdk/lib/framework/editing2/editable_text.dart ('k') | sky/sdk/lib/framework/fn.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698