Hello,
Welcome to our Microsoft Q&A platform!
Hi, @CKuttan . This is because cell is required in ListView
, try using a cell to wrap the stackLayout. Check the code:
<ListView x:Name="lstView" RowHeight="80" ...>
<ListView.ItemTemplate>
<DataTemplate>
<ViewCell>
<StackLayout Orientation="Vertical">
...
</StackLayout>
</ViewCell>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
Best Regards,
Jarvan Zhang
If the response is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.