I have a couple of pages and I want to swipe left or right to navigate between them. For example my Tabs component is like :
import { Component } from '@angular/core';
import { HomePage } from '../home/home';
import { Search } from '../search/search';
import { Share } from '../share/share';
import { Notification } from '../notification/notification';
import { Profile } from '../profile/profile';
@Component({
selector: 'hn-tabs',
templateUrl: 'tabs.html'
})
export class TabsPage {
// this tells the tabs component which Pages
// should be each tab's root Page
home: any = HomePage;
search: any = Search;
share: any = Share;
notification: any = Notification;
profile: any = Profile;
constructor() { }
}
and I want to navigate to Search page from Home Page with a SWIPE - LEFT .
Is this possible ?
Please help !!