How can I select ListView item by swipe, please? If I swipe over ViewCell of ListView I have not data of the swiped ViewCell in SelectedItem, but I would like to have it for delete this item. This is how it works when I tapp on ViewCell and I would like to make it work the same way with swipe.
<control:SwipeableListView x:Name="peopleList" ItemTapped="Handle_ItemTapped" SwipedLeft="Handle_SwipedLeft" Margin="10" SeparatorVisibility="None" RowHeight="70">
<ListView.ItemTemplate>
<DataTemplate>
<ViewCell>
<Grid>
.
.
.
</Grid>
</ViewCell>
</DataTemplate>
</ListView.ItemTemplate>
Thanks.