- Run Stocks in checked mode
- Drawer > Settings
- Enable "show baselines" mode
- Back
- Drawer
or:
- Run Stocks in checked mode
- Drawer > Settings
- Enable "show baselines" mode
- Toggle material grid on and off.
The problem is RenderBox.markNeedsLayout() doesn't check if it has a parent. The actual fix is probably just parent.markNeedsLayout(); -> parent?.markNeedsLayout();.
or:
The problem is RenderBox.markNeedsLayout() doesn't check if it has a parent. The actual fix is probably just
parent.markNeedsLayout();->parent?.markNeedsLayout();.