| Index: sky/sdk/lib/framework/components2/input.dart
|
| diff --git a/sky/sdk/lib/framework/components2/input.dart b/sky/sdk/lib/framework/components2/input.dart
|
| index 6a858fd186c03758aadb3236dcb15325fba4a2e2..0f7d4816398cc64dd69bf11c6bd798d3d7971c53 100644
|
| --- a/sky/sdk/lib/framework/components2/input.dart
|
| +++ b/sky/sdk/lib/framework/components2/input.dart
|
| @@ -89,12 +89,9 @@ class Input extends Component {
|
| children.add(new EditableText(value: _editableValue, focused: focused));
|
|
|
| return new EventListenerNode(
|
| - new FlexContainer(
|
| - direction: FlexDirection.vertical,
|
| - // style: _style,
|
| - // inlineStyle: focused ? _focusedInlineStyle : null,
|
| - children: children
|
| - ),
|
| + // style: _style,
|
| + // inlineStyle: focused ? _focusedInlineStyle : null,
|
| + new Flex(children, direction: FlexDirection.vertical),
|
| onPointerDown: (sky.Event e) => keyboard.showByRequest()
|
| );
|
| }
|
|
|