showedItemExtent property

double? showedItemExtent
final

When we have very large lists with dynamic content, unfortunately there is an open issue in flutter that causes the list to be very slow when scrolled with the srollbar.

In that case you can set this to use a fixed height for each item resolving the jankiness.

The downside obviously would be that you can't have dynamic height items.

Implementation

final double? showedItemExtent;