Hi Sadhik,
We have checked the reported requirement and referred the attached Template from our side. We would like to let you know that the ItemSize (both height and width) for each items in View will be got from the respective renderers by passing the desired content(underlying data) as View and layout the measured size as ListViewItem based on ItemIndex in SfListView. We regret to inform you that while measuring the size(both height and width) for the nested SfListView(inner list as one ItemData) as content in respective renderers, the size is measured as 1 because the SfListView content does not contain any data and it uses ScrollView as child. So, both height and width is returned as 1 from the respective renderers and this is the actual behavior. We have also ensured with Xamarin ListView too by using the same scenario with HasUnEvenRows as “true” and behaves as mentioned. To overcome the issue, either you need to define the HeightRequest for each inner SfListView or set the inner SfListView’s AutoFitMode as “Height” and define the ItemSize for outer SfListView. In our sample we have added IEnumerable<string> items in SfListView with the provided template and checked whether the items are loaded in the View. For your reference, we have attached the tested sample and you can download it from the below link.
Regards,
G.Muthu kumaran.
Thank you for clarifying as I thought there was some issue in my xaml.
I resolved it by defining the HeightRequest (according to the number of rows) for each inner SfListView as you suggested.
Really appreciate your support. Keep up the good work.