globals.printStatus('You can dump the widget hierarchy of the app (debugDumpApp) by pressing "w".');
globals.printStatus('To dump the rendering tree of the app (debugDumpRenderTree), press "t".');
CommandHelp.w.print();
CommandHelp.t.print();
if(isRunningDebug){
globals.printStatus('For layers (debugDumpLayerTree), use "L"; for accessibility (debugDumpSemantics), use "S" (for traversal order) or "U" (for inverse hit test order).');
globals.printStatus('To toggle the widget inspector (WidgetsApp.showWidgetInspectorOverride), press "i".');
globals.printStatus('To toggle the display of construction lines (debugPaintSizeEnabled), press "p".');
globals.printStatus('To simulate different operating systems, (defaultTargetPlatform), press "o".');
globals.printStatus('To toggle the elevation checker, press "z".');
CommandHelp.L.print();
CommandHelp.S.print();
CommandHelp.U.print();
CommandHelp.i.print();
CommandHelp.p.print();
CommandHelp.o.print();
CommandHelp.z.print();
}else{
globals.printStatus('To dump the accessibility tree (debugDumpSemantics), press "S" (for traversal order) or "U" (for inverse hit test order).');
CommandHelp.S.print();
CommandHelp.U.print();
}
globals.printStatus('To display the performance overlay (WidgetsApp.showPerformanceOverlay), press "P".');
globals.printStatus('To enable timeline events for all widget build methods, (debugProfileWidgetBuilds), press "a"');