I am using radio button with listview and on listview item click I want to make radio button checked/selected but unfortunately not able to select the radio button.
<StackLayout VerticalOptions="CenterAndExpand" HeightRequest="200" HorizontalOptions="CenterAndExpand" >
<ListView RowHeight="45" IsVisible="true" ItemsSource="{Binding Items}" BackgroundColor="#5679d1"
SelectedItem="{Binding objItemSelected, Mode=TwoWay}"
HasUnevenRows="true" SeparatorVisibility="Default" SeparatorColor="White">
<ListView.ItemTemplate>
<DataTemplate>
<ViewCell>
<Grid>
<Label Text="{Binding Questions}" TextColor="Black" Grid.Column="0"
Grid.Row="0" Grid.ColumnSpan="2" HorizontalOptions="Center">
</Label>
<controls:CustomRadioButton HeightRequest="15" HorizontalOptions="End" Checked="{Binding Radiobtn}" IsVisible="true" Grid.Row="0" Grid.Column="3"/>
</Grid>
</ViewCell>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
</StackLayout>