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

Unified Diff: sky/examples/rendering/borders.dart

Issue 1183913006: Rename AppView to SkyBinding. (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/game/main.dart ('k') | sky/examples/rendering/interactive_flex.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/examples/rendering/borders.dart
diff --git a/sky/examples/rendering/borders.dart b/sky/examples/rendering/borders.dart
index 103100223d91000c7818b9de6e7c1f580fb4801f..1e7904a91036943dbdf8aa66b6aab3f7490c0b0e 100644
--- a/sky/examples/rendering/borders.dart
+++ b/sky/examples/rendering/borders.dart
@@ -4,15 +4,12 @@
import 'dart:math' as math;
import 'dart:sky' as sky;
-import 'package:sky/app/view.dart';
-import 'package:sky/rendering/box.dart';
-import 'package:sky/rendering/block.dart';
-AppView app;
+import 'package:sky/rendering/block.dart';
+import 'package:sky/rendering/box.dart';
+import 'package:sky/rendering/sky_binding.dart';
void main() {
-
-
var root = new RenderBlock(children: [
new RenderPadding(
padding: new EdgeDims.all(10.0),
@@ -76,5 +73,5 @@ void main() {
)
),
]);
- app = new AppView(root: root);
+ new SkyBinding(root: root);
}
« no previous file with comments | « sky/examples/game/main.dart ('k') | sky/examples/rendering/interactive_flex.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698