| 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' as sky; | 5 import 'dart:sky' as sky; |
| 6 | 6 |
| 7 import '../rendering/flex.dart'; | 7 import '../rendering/flex.dart'; |
| 8 import '../widgets/wrappers.dart'; | 8 import '../widgets/wrappers.dart'; |
| 9 import 'editable_string.dart'; | 9 import 'editable_string.dart'; |
| 10 import 'editable_text.dart'; | 10 import 'editable_text.dart'; |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 // style: _placeholderStyle, | 83 // style: _placeholderStyle, |
| 84 child: new Text(placeholder) | 84 child: new Text(placeholder) |
| 85 )); | 85 )); |
| 86 } | 86 } |
| 87 | 87 |
| 88 children.add(new EditableText(value: _editableValue, focused: focused)); | 88 children.add(new EditableText(value: _editableValue, focused: focused)); |
| 89 | 89 |
| 90 return new EventListenerNode( | 90 return new EventListenerNode( |
| 91 // style: _style, | 91 // style: _style, |
| 92 // inlineStyle: focused ? _focusedInlineStyle : null, | 92 // inlineStyle: focused ? _focusedInlineStyle : null, |
| 93 new Flex(children, direction: FlexDirection.vertical), | 93 new Stack(children), |
| 94 onPointerDown: (sky.Event e) => keyboard.showByRequest() | 94 onPointerDown: (sky.Event e) => keyboard.showByRequest() |
| 95 ); | 95 ); |
| 96 } | 96 } |
| 97 | 97 |
| 98 void didUnmount() { | 98 void didUnmount() { |
| 99 if (_isAttachedToKeyboard) | 99 if (_isAttachedToKeyboard) |
| 100 keyboard.hide(); | 100 keyboard.hide(); |
| 101 super.didUnmount(); | 101 super.didUnmount(); |
| 102 } | 102 } |
| 103 | 103 |
| 104 } | 104 } |
| OLD | NEW |