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

Unified Diff: sky/sdk/lib/editing2/editable_text.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/examples/widgets/spinning_mixed.dart ('k') | sky/sdk/lib/editing2/input.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/sdk/lib/editing2/editable_text.dart
diff --git a/sky/sdk/lib/editing2/editable_text.dart b/sky/sdk/lib/editing2/editable_text.dart
index 4c93aee3eab9238a7d7ad2bf8704f844f060fc7b..e59011f35e4f11a3bf4978d2b83301b79c6cdc5f 100644
--- a/sky/sdk/lib/editing2/editable_text.dart
+++ b/sky/sdk/lib/editing2/editable_text.dart
@@ -58,13 +58,13 @@ class EditableText extends Component {
_showCursor = false;
}
- UINode build() {
+ Widget build() {
if (focused && _cursorTimer == null)
_startCursorTimer();
else if (!focused && _cursorTimer != null)
_stopCursorTimer();
- //List<UINode> children = new List<UINode>();
+ //List<Widget> children = new List<Widget>();
String hack = "";
if (!value.composing.isValid) {
« no previous file with comments | « sky/examples/widgets/spinning_mixed.dart ('k') | sky/sdk/lib/editing2/input.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698