| Index: sky/examples/widgets/spinning_mixed.dart
|
| diff --git a/sky/examples/widgets/spinning_mixed.dart b/sky/examples/widgets/spinning_mixed.dart
|
| index 38c05add8575fe45af4dad558a4a347b0efec44b..4efa0dcb4c59d4f585e95da4ebcf6a1e06988fc0 100644
|
| --- a/sky/examples/widgets/spinning_mixed.dart
|
| +++ b/sky/examples/widgets/spinning_mixed.dart
|
| @@ -76,16 +76,16 @@ void rotate(double timeStamp) {
|
| void main() {
|
| // Because we're going to use UINodes, we want to initialise its
|
| // AppView, not use the default one. We don't really need to do
|
| - // this, because RenderObjectToUINodeAdapter does it for us, but
|
| + // this, because RenderBoxToUINodeAdapter does it for us, but
|
| // it's good practice in case we happen to not have a
|
| - // RenderObjectToUINodeAdapter in our tree at startup, or in case we
|
| + // RenderBoxToUINodeAdapter in our tree at startup, or in case we
|
| // want a renderViewOverride.
|
| UINodeAppView.initUINodeAppView();
|
|
|
| RenderFlex flexRoot = new RenderFlex(direction: FlexDirection.vertical);
|
|
|
| RenderProxyBox proxy = new RenderProxyBox();
|
| - new RenderObjectToUINodeAdapter(proxy, builder); // adds itself to proxy
|
| + new RenderBoxToUINodeAdapter(proxy, builder); // adds itself to proxy
|
|
|
| addFlexChildSolidColor(flexRoot, const sky.Color(0xFFFF00FF), flex: 1);
|
| flexRoot.add(proxy);
|
|
|