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

Unified Diff: sky/examples/raw/hello_world.dart

Issue 1139823010: Plumb display metrics into SkyView (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 7 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
Index: sky/examples/raw/hello_world.dart
diff --git a/sky/examples/raw/hello_world.dart b/sky/examples/raw/hello_world.dart
index 52cfc50c4f3d719f980a037dc1f12ab03c2e53f4..0b99a9cb6d01cb03ab09f60f08a9fdc1c778bd75 100644
--- a/sky/examples/raw/hello_world.dart
+++ b/sky/examples/raw/hello_world.dart
@@ -8,8 +8,8 @@ import 'dart:sky';
void main() {
print("Hello, world");
- double width = 500.0;
- double height = 500.0;
+ double width = view.width;
+ double height = view.height;
PictureRecorder recorder = new PictureRecorder(width, height);
double radius = min(width, height) * 0.45;

Powered by Google App Engine
This is Rietveld 408576698