SKILL Instructions
claude
cursor
chatgpt
#flutter
#dart
#widgets
#ui
About
Fundamentals of Flutter: Stateless vs Stateful widgets, BuildContext, keys, and layout constraints.
Metadata (SKILL.md frontmatter)
- name
- flutter-widget-basics
- version
- 1.0.0
Instructions
Flutter Widgets
- Prefer
StatelessWidgetunless local mutable state is needed. - Understand constraints: parent gives constraints, child chooses size.
- Use
constconstructors wherever possible for rebuild performance. - Split large
build()methods into small widget classes, not helper methods.