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

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

Issue 1232313002: Use package:sky imports consistently (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: fix BUILD.gn Created 5 years, 5 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/editing/editable_text.dart ('k') | sky/sdk/lib/editing/keyboard.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/sdk/lib/editing/input.dart
diff --git a/sky/sdk/lib/editing/input.dart b/sky/sdk/lib/editing/input.dart
index 639b8bff60fd6410f3358ce99e011d20b7cae9b1..11f3a59b28711d8263c5a6da3e6157236d57453c 100644
--- a/sky/sdk/lib/editing/input.dart
+++ b/sky/sdk/lib/editing/input.dart
@@ -2,12 +2,12 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-import '../painting/text_style.dart';
-import '../widgets/basic.dart';
-import '../widgets/theme.dart';
-import 'editable_string.dart';
-import 'editable_text.dart';
-import 'keyboard.dart';
+import 'package:sky/editing/editable_string.dart';
+import 'package:sky/editing/editable_text.dart';
+import 'package:sky/mojo/keyboard.dart';
+import 'package:sky/painting/text_style.dart';
+import 'package:sky/widgets/basic.dart';
+import 'package:sky/widgets/theme.dart';
typedef void ValueChanged(value);
@@ -80,7 +80,7 @@ class Input extends StatefulComponent {
}
textChildren.add(new EditableText(
- value: _editableValue,
+ value: _editableValue,
focused: focused,
style: textStyle,
cursorColor: cursorColor
« no previous file with comments | « sky/sdk/lib/editing/editable_text.dart ('k') | sky/sdk/lib/editing/keyboard.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698