swipe to delete

How do i implement swipe to delete in fuse tols

Hi!

You can use the SwipeGesture class and react to a swipe with the Swiped trigger:
https://www.fusetools.com/docs/fuse/gestures/swipegesture
https://www.fusetools.com/docs/fuse/gestures/swiped

something like:

<SwipeGesture ux:Name="swipe" Direction="Left" />
<Swiped>
        <Callback Handler="{someJSDeleteFunction}"/>
</Swiped>

Aleme,

There’s an example on the website that seems to do just what you’re looking for:
https://www.fusetools.com/examples/inbox

Check it out!