Why is only one item within my ListView being displayed?
RecentLinks has more than one item within its collection. Yet, only one item gets displayed.
<ListView ItemsSource="{Binding Subscriptions}" >
<ListView.ItemTemplate>
<DataTemplate>
<ViewCell>
<StackLayout Orientation="Horizontal">
<ListView ItemsSource="{Binding RecentLinks}">
<ListView.ItemTemplate>
<DataTemplate>
<ViewCell>
<Label Text="{Binding Title}" FontSize="Micro" />
</ViewCell>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
</StackLayout>
</ViewCell>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
I know there's multiple items in RecentLinks because I added the following markup, which at runtime, conveyed 3 items:
<Label Text="{Binding RecentLinks.Length}" />
Here's the source code: