In my project im using ListView to display my products and it work. But if i replace ListView with SfListView it just crash and this error coming
here is my Xaml code:
<syncfusion:SfListView x:Name="listView"
ItemsSource="{Binding ListCoffee}" >
<syncfusion:SfListView.ItemTemplate>
<DataTemplate>
<ViewCell>
<Grid Padding="10" RowSpacing="3" ColumnSpacing="2">
<Grid.RowDefinitions>
<RowDefinition Height="40"/>
<RowDefinition Height="50"/>
<RowDefinition Height="35"/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="128"/>
<ColumnDefinition Width="100"/>
<ColumnDefinition Width="100"/>
<ColumnDefinition Width="35"/>
</Grid.ColumnDefinitions>
<Image Grid.Row="0" Grid.Column="0" Grid.RowSpan="3" Aspect="AspectFit"
HorizontalOptions="Center" Source="{Binding ImageSource}" VerticalOptions="Start" HeightRequest="110" WidthRequest="110"/>
<Label x:Name="NameofItem" Grid.Row="0" Grid.Column="1" Grid.ColumnSpan="3" FontSize="16" VerticalOptions="Center"
HorizontalTextAlignment="Center" TextColor="#3c6f9c" Text="{Binding Name}" WidthRequest="30"/>