Skip to content

Commit 33d7ffd

Browse files
committed
misc: number of lines
1 parent 9594ce2 commit 33d7ffd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tools/flutter/screens/helpers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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`;

0 commit comments

Comments
 (0)