ion item

Solutions on MaxInterview for ion item by the best coders in the world

showing results for - "ion item"
Ari
21 Feb 2017
1<!-- Default Item -->
2<ion-item>
3  <ion-label>
4    Item
5  </ion-label>
6</ion-item>
7
8<!-- Item as a Button -->
9<ion-item button (click)="buttonClick()">
10  <ion-label>
11    Button Item
12  </ion-label>
13</ion-item>
14
15<!-- Item as an Anchor -->
16<ion-item href="https://www.ionicframework.com">
17  <ion-label>
18    Anchor Item
19  </ion-label>
20</ion-item>
21
22<ion-item color="secondary">
23  <ion-label>
24    Secondary Color Item
25  </ion-label>
26</ion-item>