From a33db92d62be1b40fe8055521b05d77f16e7f623 Mon Sep 17 00:00:00 2001 From: Hixie Date: Thu, 4 Jun 2015 15:45:44 -0700 Subject: [PATCH] Improve the RenderObject.toString() logic so that there's not blank lines everywhere and to generally be better. Adds sizes, positions, transforms, improves RenderParagraph's output. R=abarth@chromium.org Review URL: https://codereview.chromium.org/1160233004 --- examples/stocks2/lib/stock_app.dart | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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(); + }; }