Ionic Tambahkan tombol slide berikutnya

// IonSlides as type but it didn't help (ionic v6.17.1)

@ViewChild('slides', {static: true}) slides: ElementRef;

swipeRight() {
	this.slides.nativeElement.slideNext();
}
//{static: true} is optional
Drab Dotterel