| Index: sky/examples/raw/hello_world.dart
|
| diff --git a/sky/examples/raw/hello_world.dart b/sky/examples/raw/hello_world.dart
|
| index 7e8e342bf2bf3a10ca759cd97ca33803e01e400f..d6685036095ffeeb5f2c5c730929ea7ca2eb82b0 100644
|
| --- a/sky/examples/raw/hello_world.dart
|
| +++ b/sky/examples/raw/hello_world.dart
|
| @@ -12,7 +12,7 @@ Picture draw(int a, int r, int g, int b) {
|
| PictureRecorder recorder = new PictureRecorder(width, height);
|
| double radius = min(width, height) * 0.45;
|
|
|
| - Paint paint = new Paint()..color = Color.fromARGB(a, r, g, b);
|
| + Paint paint = new Paint()..color = new Color.fromARGB(a, r, g, b);
|
| recorder.drawCircle(width / 2, height / 2, radius, paint);
|
| return recorder.endRecording();
|
| }
|
|
|