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 rowso far I’ve not found the right set up to make each row swipeable
Any ideas from anyone who has use Avalonia ?