Ionic list: swipe to remove?

Is there any possibility to implement "swipe-to-remove" (like in Android task-screen) functionality with "ion-list"?

I have found "can-swipe" directive that allows to add some buttons which appear under partly-swiped item, but that's not what I'm looking for. I need to fully swipe an item (both sides) and remove it when it becomes swiped to the end of the screen.

OK, it seems like "ion-list" doesn't have built in "swipe-to-delete" functionality.

Nevertheless I implemented it using Hammer Plugin for Angular.js and some custom directives and logic. That allowed to make list-items be swipeable. And then I used that technology for actual elements removal.