Swipe List Left to right + ionic angular

I am currently new to ionic structure. I have a list in which the user should be able to scroll left - right and right.

I can scroll the list item from right to left.

Is there a way to scroll a list item from left to right?

enter image description here

CODE

<ion-list >
      <ion-item class="item-icon-right " ng-repeat="alarm in alarmList| filter: alarmName" type="item-text-wrap"  on-swipe-right="swipeRight()" on-swipe-left="acknoledge()" can-swipe="true">

      </ion-item>
    </ion-list>

      

EDIT:

I can capture the event using on-swipe-right , but the list item animation is not working.

+3


source to share





All Articles