Hi Darrell,
SfListView doesn’t provide support for your requirement due to restrictions in Xamarin Forms layout. By default, in Xamarin Forms any view will be arranged with maximum value of allocated size and available size.
Allocated size – size allocated by the parent to render its child.
Available size – size calculated by the child to render itself.
However, you can achieve your requirement in the sample level by modifying the HeightRequest value of the SfListView based on your items’ height. This is just a workaround and is not guaranteed to work on complex layouts in Xamarin.
We have prepared a sample to meet your requirement and you can download the same from the below location.
Regarding your query, “I need the list area to grow in size as items are added to the list without adding a scrollbar”.
When the underlying data in SfListView exceeds the view area, the scrollbar will be automatically enabled to represent that the list view items are scrollable. This is the actual behavior of a ListView and cannot be changed.
Regards,
Dinesh Babu Yadav