I\'m making a mobile app and I\'m trying to load a list in a listview. The list has multiple elements and a list:
public static List Propositio
You could use Bindable Layout
<StackLayout Orientation="Horizontal">
<StackLayout x:Name="StackLayoutMap" BindableLayout.ItemsSource="{Binding Users}">
<BindableLayout.ItemTemplate>
<DataTemplate>
<Label Text="{Binding Naam}" TextColor="Red" ... />
</DataTemplate>
</BindableLayout.ItemTemplate>
</StackLayout>
//...
</StackLayout>
For more details about Bindable Layout you could refer this doc .