Unplanned
Last Updated: 22 Jun 2018 10:40 by N Mackay
ADMIN
Ves
Created on: 28 Sep 2016 12:32
Category: UI for UWP
Type: Feature Request
1
ListView: Expose API to limit swiping in a single direction
Expose API to limit swiping in a single direction. This should disallow the user to even start swiping in one direction, keeping the functionality intact for the other.
1 comment
N Mackay
Posted on: 28 Sep 2016 12:53
Yes please.

We can achieve this for Xamarin Forms iOS and Android with Custom Renderers but it's not possible for UWP. Even an API you have can only access via the customer renderer would be okay but some kind of swipe enumeration in the Forms wrapper would be be better

SwipeLeft
SwipeRight
SwipeUp
SwipeDown
All
None

Listview.SwipeDirection = SwipeLeft;
Listview.SwipeDirection = SwipeLeft | SwipeRight;

etc.