| Index: sky/framework/components/input.dart
|
| diff --git a/sky/framework/components/input.dart b/sky/framework/components/input.dart
|
| index 5a34525e95bdac48087a66033583323e209e615e..c75bfb6aed910f85d60adf8e3d6c3c9273499fd6 100644
|
| --- a/sky/framework/components/input.dart
|
| +++ b/sky/framework/components/input.dart
|
| @@ -65,13 +65,13 @@ class Input extends Component {
|
| }
|
| }
|
|
|
| - Node build() {
|
| + UINode build() {
|
| if (focused && !_isAttachedToKeyboard) {
|
| keyboard.show(_editableValue.stub);
|
| _isAttachedToKeyboard = true;
|
| }
|
|
|
| - List<Node> children = [];
|
| + List<UINode> children = [];
|
|
|
| if (placeholder != null && _value.isEmpty) {
|
| children.add(new Container(
|
|
|