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

Unified Diff: sky/sdk/lib/editing2/input.dart

Issue 1190793002: Rename UINode to Widget. (Closed) Base URL: https://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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sky/sdk/lib/editing2/editable_text.dart ('k') | sky/sdk/lib/widgets/basic.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/sdk/lib/editing2/input.dart
diff --git a/sky/sdk/lib/editing2/input.dart b/sky/sdk/lib/editing2/input.dart
index 8d13b51beafacc3e16f7f78b2071001229ebf046..c40b67fe618331ea27435c9f009de7aa7f19ceac 100644
--- a/sky/sdk/lib/editing2/input.dart
+++ b/sky/sdk/lib/editing2/input.dart
@@ -69,13 +69,13 @@ class Input extends Component {
}
}
- UINode build() {
+ Widget build() {
if (focused && !_isAttachedToKeyboard) {
keyboard.show(_editableValue.stub);
_isAttachedToKeyboard = true;
}
- List<UINode> children = [];
+ List<Widget> children = [];
if (placeholder != null && _value.isEmpty) {
children.add(new Container(
« no previous file with comments | « sky/sdk/lib/editing2/editable_text.dart ('k') | sky/sdk/lib/widgets/basic.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698