<listview:SfListView.LeftSwipeTemplate>
<DataTemplate x:Name="offlineJobLeftSwipeTemplate">
<Grid HorizontalOptions="Center" VerticalOptions="Center">
<Image BackgroundColor="Transparent" HeightRequest="35" Source="delete.png" WidthRequest="35">
<Image.GestureRecognizers>
<TapGestureRecognizer Command="{Binding BindingContext.RemoveJobCommand, Source={x:Reference Name=offlineJobsListViewSf} }" CommandParameter="{Binding}" />
</Image.GestureRecognizers>
</Image>
<!--<Button Text=""
TextColor="White"
FontSize="32"
Padding="0"
HorizontalOptions="CenterAndExpand"
VerticalOptions="CenterAndExpand"
BackgroundColor="Transparent"
Command="{Binding BindingContext.RemoveJobCommand, Source={x:Reference Name=offlineJobsListViewSf} }"
CommandParameter="{Binding .}"
FontFamily="{StaticResource FontAwesomeRegular}" />-->
</Grid>
</DataTemplate>
</listview:SfListView.LeftSwipeTemplate>