What problem does it solve? Flutter developers frequently encounter cryptic runtime errors like RenderFlex overflow, unbounded constraints, and setState-during-build that halt development. This Skill provides immediate, actionable fixes with working Dart code examples for the most common Flutter errors. ## Core Features & Use Cases - Layout Error Fixes: Solutions for RenderFlex overflow, unbounded height/width constraints, and RenderBox not laid out errors using Expanded, Flexible, and SizedBox. - State & Scroll Error Resolution: Fixes for setState called during build and ScrollController attached to multiple scroll views. - Debugging Guidance: Techniques using Flutter Inspector, debugPaintSizeEnabled, and DevTools to visualize layout constraints. - Use Case: When your app crashes with "Vertical viewport was given unbounded height" after adding a ListView inside a Column, get the exact fix: wrap the ListView in Expanded. ## Quick Start Ask how to fix the Flutter error "A RenderFlex overflowed by 42 pixels" in your Row widget.