2.0.0 • Published 5 years ago

ionic-swipe-all v2.0.0

Weekly downloads
196
License
-
Repository
github
Last release
5 years ago

Ionic Swipe All

Ionic Swipe All allow Ionic to recognize both horizontal and vertical swipe gesture.

Requirements

  • Angular: 7+

Installation

npm install --save ionic-swipe-all

For previous versions of Angular, please use v1.3.0:

npm install --save ionic-swipe-all@1.3.0
import { IonicSwipeAllModule } from 'ionic-swipe-all';

@NgModule({
  imports: [IonicSwipeAllModule],
})
export class AppModule {
}

Usage

With this module you can use (swipeup) and (swipedown) events. In the (swipe) event vertical gestures are detected. Just add the swipeAll property to the element you want to swipe and use the events as needed. The (swipeleft) and (swiperight) events are available too.

@Component({
    template: `
      <div swipeAll
           (swipe)="swipeAll($event)"
           (swipeleft)="swipeLeft($event)"
           (swiperight)="swipeRight($event)"
           (swipeup)="swipeUp($event)"
           (swipedown)="swipeDown($event)"
      ></div>
    `,
})
export class AppComponent {

    swipeAll(event: any): any {
        console.log('Swipe All', event);
    }

    swipeLeft(event: any): any {
        console.log('Swipe Left', event);
    }

    swipeRight(event: any): any {
        console.log('Swipe Right', event);
    }

    swipeUp(event: any): any {
        console.log('Swipe Up', event);
    }

    swipeDown(event: any): any {
        console.log('Swipe Down', event);
    }

}
2.0.0

5 years ago

1.3.0

5 years ago

1.2.0

6 years ago

1.1.0

7 years ago

1.1.0-rc2

7 years ago

1.1.0-rc1

7 years ago

1.0.1

7 years ago

1.0.1-b6

7 years ago

1.0.1-b5

7 years ago

1.0.1-b4

7 years ago

1.0.1-b3

7 years ago

1.0.1-b2

7 years ago

1.0.1-b1

7 years ago

1.0.0

7 years ago