| 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 '../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 Loading... |
| 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 } |
| OLD | NEW |