I understand that nesting a listview within a listview is not best practice, however, for our use case, we are simply listing a number of items, and then a number of subitems beside them in a horizontal row, like this:
ITEM 1 mod 1 mod 2 mod 3 ITEM 2 mod 1 mod2 ITEM 3 mod 1 etc....
We are using a horiztonal sfListivew to accomplish the first listview of items and then within that listview, we're using another nested sfListview to display the modifiers. The parent sfListivew is displaying as expected. However, the modifier list does not show up. I know the data is there because if I move the label around, I can see the letters overlay on the first listview, but in our below code, the modifier listview disappears.
Can you tell me why that might be?
```
<ListView HorizontalOptions="Center"
VerticalOptions="StartAndExpand"
BackgroundColor="White"
HasUnevenRows="True"
ItemsSource="{Binding Archived}"
ItemTapped="ItemTapped">
<ListView.ItemTemplate>
<DataTemplate>
<ViewCell>
<StackLayout>
<Grid IsEnabled="False"
HorizontalOptions="FillAndExpand"
VerticalOptions="FillAndExpand">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto" />
<ColumnDefinition Width="Auto" />
<ColumnDefinition Width="Auto" />
</Grid.ColumnDefinitions>
<Label Text="{Binding Name}"
TextColor="Black"
Grid.Column="0"
HorizontalOptions="Start"
VerticalOptions="Center"
FontSize="18" />
<Label Text="{Binding OrderedAt}"
TextColor="Black"
Grid.Column="1"
HorizontalOptions="Start"
VerticalOptions="Center"
FontSize="18" />
<StackLayout
VerticalOptions="FillAndExpand"
HorizontalOptions="FillAndExpand"
Grid.Column="2"
HeightRequest="40">
<syncfusion:SfListView Orientation="Horizontal"
ItemsSource="{Binding Items}"
AutoFitMode="Height"
ItemSpacing="2">
<syncfusion:SfListView.ItemTemplate>
<DataTemplate>
<ViewCell>
<Grid HorizontalOptions="FillAndExpand"
VerticalOptions="FillAndExpand">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="Auto"/>
</Grid.ColumnDefinitions>
<Label Grid.Column="0"
TextColor="Black"
FontSize="18"
FontAttributes="Bold"
VerticalOptions="Center"
HorizontalOptions="Start"
Text="{Binding Name}" />
<syncfusion:SfListView Grid.Column="1"
VerticalOptions="Center"
Orientation="Horizontal"
ItemsSource="{Binding Modifiers}"
WidthRequest="200">
<syncfusion:SfListView.ItemTemplate>
<DataTemplate>
<ViewCell>
<Label TextColor="LightGray"
VerticalOptions="Center"
HorizontalOptions="Start"
FontSize="16"
Text="{Binding Name}" />
</ViewCell>
</DataTemplate>
</syncfusion:SfListView.ItemTemplate>
</syncfusion:SfListView>
</Grid>
</ViewCell>
</DataTemplate>
</syncfusion:SfListView.ItemTemplate>
</syncfusion:SfListView>
</StackLayout>
</Grid>
</StackLayout>
</ViewCell>
</DataTemplate>
<ListView