I have a list of an object and I just want to display a couple of labels for each item.
In the asp.net days I would use a repeater with the labels inside.
I realized there is no repeater in Xamarin Forms, or is there?
I tried using a Listview but it doesn't work because in IOS it creates empty rows till the end of the screen.
Is there an alternative to ListView?
This would be the idea:
<repeater:RepeaterView
ItemsSource="{Binding MyObject}">
<Label Text="{Binding Prop1 }"/>
<Label Text="{Binding Prop2 }"/>
</repeater:RepeaterView>
How to implement this in Xamarin Forms?
Is there a native way to achieve this or only using 3rd party libraries?
Thanks