diff --git a/examples/stocks2/lib/stock_app.dart b/examples/stocks2/lib/stock_app.dart index 7e68f94f813..967a25674bb 100644 --- a/examples/stocks2/lib/stock_app.dart +++ b/examples/stocks2/lib/stock_app.dart @@ -218,5 +218,9 @@ class StocksApp extends App { void main() { print("starting stocks app!"); - new StocksApp(); + App app = new StocksApp(); + app.appView.onFrame = () { + // uncomment this for debugging: + // app.appView.debugDumpRenderTree(); + }; }