Date: 2024-12-18 13:07:35
Score: 0.5
Natty:
- If everything is visible on the single screen - try to use
StatelessWidget
with const
keyword, So that flutter can reuse.
- If everything is need not be visible on single screen (needs
scrolling to see all items) use
ListView.builder(...)
or
GridView.builder(...)
or any Sliver
variant.
Reasons:
- Low length (0.5):
- Has code block (-0.5):
- Low reputation (0.5):
Posted by: yugandhar