File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
src/tools/flutter/screens Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -276,7 +276,7 @@ export function generateFlutterScreenGuidance(analysis: ScreenAnalysis): string
276276 // Widget composition best practices
277277 guidance += `🏗️ Widget Composition Best Practices:\n` ;
278278 guidance += `- Start by building the complete screen widget tree in a single build() method\n` ;
279- guidance += `- Keep composing widgets inline until you reach ~200 lines of code\n` ;
279+ guidance += `- Keep composing widgets inline until you reach ~250 lines of code\n` ;
280280 guidance += `- Only then break down into private StatelessWidget classes for sections\n` ;
281281 guidance += `- Use private widgets (prefix with _) for internal screen component breakdown\n` ;
282282 guidance += `- Avoid functional widgets - always use StatelessWidget classes\n\n` ;
You can’t perform that action at this time.
0 commit comments