Semantics
diff --git a/examples/stocks/lib/main.dart b/examples/stocks/lib/main.dart
index cfc1b4a..38fe498 100644
--- a/examples/stocks/lib/main.dart
+++ b/examples/stocks/lib/main.dart
@@ -43,7 +43,8 @@
backupMode: BackupMode.enabled,
debugShowGrid: false,
debugShowSizes: false,
- showPerformanceOverlay: false
+ showPerformanceOverlay: false,
+ showSemanticsDebugger: false
);
void initState() {
@@ -110,6 +111,7 @@
theme: theme,
debugShowMaterialGrid: _configuration.debugShowGrid,
showPerformanceOverlay: _configuration.showPerformanceOverlay,
+ showSemanticsDebugger: _configuration.showSemanticsDebugger,
routes: <String, RouteBuilder>{
'/': (RouteArguments args) => new StockHome(_stocks, _symbols, _configuration, configurationUpdater),
'/settings': (RouteArguments args) => new StockSettings(_configuration, configurationUpdater)