Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
ihadeed committed Mar 18, 2017
1 parent 9a7e4a6 commit 59b6c8b
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
Swipeable tabs for Ionic 2.

Work in progress, but essentially works.

```
npm i --save ionic2-super-tabs
```

```
import { SuperTabsModule } from 'ionic2-super-tabs';
@NgModule({
...
imports: [
...
SuperTabsModule
],
...
})
```

```
<super-tabs>
<super-tab [tabRoot]="page1" title="First page" [icon]="'home'"></super-tab>
<super-tab [tabRoot]="page2" title="Second page" [icon]="'pin'"></super-tab>
<super-tab [tabRoot]="page3" title="Third page" [icon]="'heart'"></super-tab>
</super-tabs>
```

0 comments on commit 59b6c8b

Please sign in to comment.