shrinkWrap vs Expanded vs slivers for long lists in Flutter: which should you pick?
For a long list, never use shrinkWrap. Use Expanded when the list is the only scrollable, and slivers (CustomScrollView) when it shares a scroll with other sections. Here is why, with a build-count benchmark.