| Index: sky/examples/raw/ink_well.dart
|
| diff --git a/sky/examples/raw/ink_well.dart b/sky/examples/raw/ink_well.dart
|
| index 27eb60b23cdee6203f099e06eb6dff2e89da5899..afd28dbfdc7521e288c46aaecd2bd2e775aca184 100644
|
| --- a/sky/examples/raw/ink_well.dart
|
| +++ b/sky/examples/raw/ink_well.dart
|
| @@ -5,7 +5,7 @@
|
| import 'dart:sky' as sky;
|
| import 'package:sky/framework/app.dart';
|
| import 'package:sky/framework/rendering/box.dart';
|
| -import 'package:sky/framework/rendering/node.dart';
|
| +import 'package:sky/framework/rendering/object.dart';
|
| import 'package:sky/framework/animation/animated_value.dart';
|
| import 'package:sky/framework/animation/curves.dart';
|
|
|
| @@ -31,7 +31,7 @@ class InkSplash {
|
| inkWell.markNeedsPaint();
|
| }
|
|
|
| - void paint(RenderNodeDisplayList canvas) {
|
| + void paint(RenderObjectDisplayList canvas) {
|
| int opacity = (_kInitialOpacity * (1.0 - (radius.value / _kTargetSize))).floor();
|
| _paint.color = new sky.Color(opacity << 24);
|
| canvas.drawCircle(position.x, position.y, radius.value, _paint);
|
| @@ -55,7 +55,7 @@ class InkWell extends RenderBox {
|
| size = constraints.constrain(new sky.Size.infinite());
|
| }
|
|
|
| - void paint(RenderNodeDisplayList canvas) {
|
| + void paint(RenderObjectDisplayList canvas) {
|
| canvas.drawRect(new sky.Rect.fromLTRB(0.0, 0.0, size.width, size.height),
|
| new sky.Paint()..color = const sky.Color(0xFFCCCCCC));
|
| for (InkSplash splash in _splashes)
|
|
|