v1.8.1
版本发布时间: 2021-01-26 00:31:46
roubachof/Sharpnado.CollectionView最新发布版本:v3.1.2(2024-01-26 16:30:20)
NEW
-
EnableDragAndDrop
is now a bindable property so drag and drop can be enabled and disabled at runtime - You can specify an animation for the drag and drop mode with the
DragAndDropEnabledAnimationAsync
property - You can decide to start the drag without long press on iOS thanks to the iOS specific property
iOSDragAndDropOnPanGesture
to true
Example
HorizontalListView.DragAndDropEnabledAnimationAsync = async (viewCell, token) =>
{
while (!token.IsCancellationRequested)
{
await viewCell.View.RotateTo(8);
await viewCell.View.RotateTo(-8);
}
await viewCell.View.RotateTo(0);
};
Fixes
#17
1、 Sharpnado.Forms.HorizontalListView.1.8.1.nupkg 230.01KB