fix(dev): don't build in initState (#2433)

cyan committed Aug 6, 2025 at 22:46 UTC 9d30c1d4e27acb05571091a07bb9e808d1eaadc4
1 file changed +1 -1
lib/src/screens/dev/moneroc_call_profiler.dart
+1 -1
@@ -116,8 +116,8 @@ max: slowest execution (% of frame)
116
117 @override
118 void initState() {
119 - _buildWidgets();
119 super.initState();
120 + Future.delayed(Duration.zero).then((_) => _buildWidgets());
121 }
122
123 SelectableText cw(String text, Color? color) {