A solid reference for Flutter form implementation that walks you through the complete validation workflow. Covers the essential pattern of StatefulWidget with GlobalKey<FormState>, TextFormField validators that return null for success or error strings for failures, and the validate() method for submission handling. The step-by-step checklist is genuinely helpful for getting the architecture right the first time. Most useful when you need proper form validation beyond basic TextField widgets. The examples are clean and follow Flutter best practices, though you'll still need to handle specific validation rules like email regex or password complexity yourself.
npx skills add https://github.com/flutter/skills --skill flutter-building-forms