1.0.0 • Published 5 years ago

ionic2-super-tabs-japex v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

Swipeable tabs for Ionic 2.

Work in progress, but essentially works.

npm i --save ionic2-super-tabs-japex
import { SuperTabsModule } from 'ionic2-super-tabs-japex';

@NgModule({
    ...
    imports: [
      ...
      SuperTabsModule
      ],
    ...
})
<super-tabs>
  <super-tab [tabRoot]="page1" id="page1" title="First page" [icon]="'home'"></super-tab>
  <super-tab [tabRoot]="page2" id="page2" title="Second page" [icon]="'pin'"></super-tab>
  <super-tab [tabRoot]="page3" id="page3" title="Third page" [icon]="'heart'"></super-tab>
</super-tabs>