Hallo,
in Android, I can't use in the DataTemplate in SfListView.ItemTemplate the Frame Element. It is not selectable/clickable. IOS everything works fine.
I use .net 6 and the newest Version of the SfListView
Example:
<Frame Margin="10">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="auto" />
<RowDefinition Height="*"/>
<RowDefinition Height="auto"/>
<RowDefinition Height="auto"/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="10"/>
<ColumnDefinition/>
<ColumnDefinition/>
<ColumnDefinition Width="10"/>
</Grid.ColumnDefinitions>
<Label Grid.Column="1" Grid.ColumnSpan="2" Text="{Binding DriverName}" FontAttributes="Bold" TextColor="Black" FontSize="20" />
<BoxView
Grid.Column="1" Grid.ColumnSpan="2" Grid.Row="1"
BackgroundColor="Silver"
HeightRequest="1"
HorizontalOptions="FillAndExpand" />
<StackLayout Spacing="5" Orientation="Horizontal" Grid.Column="1" Grid.ColumnSpan="2" Grid.Row="2">
<Label Text="{Binding UserName}" TextColor="DarkGray" FontSize="15"/>
<Label Text="{Binding SurName}" TextColor="DarkGrey" FontSize="15"/>
</StackLayout>
<Label Grid.Column="1" Grid.ColumnSpan="2" Grid.Row="3" Text="{Binding UserDescription}" TextColor="Gray" FontSize="15"/>
</Grid>
</Frame>
Thanks,
Markus