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

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

Issue 1179643004: Stop the search search button from crashing stocks2 (Closed) Base URL: git@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') | no next file » | 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 '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
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 }
OLDNEW
« no previous file with comments | « sky/sdk/lib/framework/editing2/editable_text.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698