chips component initial commit

This commit is contained in:
Eddie Lau 3dd13
2016-01-07 18:06:32 +08:00
parent f74606dc1b
commit e272d6a9ba
13 changed files with 275 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
import {App, IonicApp} from 'ionic/ionic';
@App({
templateUrl: 'main.html'
})
class E2EApp {
constructor(app: IonicApp) {
}
}

View File

@@ -0,0 +1,18 @@
<ion-toolbar>
<ion-title>Chips With Text</ion-title>
</ion-toolbar>
<ion-content padding style="text-align:center">
<p>
<ion-chip>
<ion-label>Default</ion-label>
</ion-chip>
</p>
<p>
<ion-chip>
<ion-label>Another Longer Text</ion-label>
</ion-chip>
</p>
</ion-content>