| 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;
|
|
|