Avalonia & C# and swiping rows

I have this XAML

  <ListBox SelectionMode="Single" Name="list">
     <ListBox.ItemTemplate>
         <DataTemplate>
              <Border BorderBrush="Blue" BorderThickness="1" 
                      CornerRadius="4" Padding="4">
                  <TextBlock Text="{Binding}"/>
              </Border>
          </DataTemplate>
      </ListBox.ItemTemplate>
  </ListBox>

trying to make each ROW swipable

I have tried

``` ``` and suitable code in my C# but this seems to make the LIST swappable - not each row

so far I’ve not found the right set up to make each row swipeable

Any ideas from anyone who has use Avalonia ?