April 2017
Beginner to intermediate
378 pages
7h 57m
English
Ionic provides different variations on the buttons, by size and style.
Update the ion-content directive inside src/pages/home/home.html with the following code and we should see different button variations:
<ion-content class="home" padding> <button ion-button>Button</button> <button ion-button color="light" outline>Light Outline</button> <button ion-button color="secondary" clear>Secondary Clear</button> <button ion-button color="danger" round>Danger Round</button> <button ion-button block>Block Button</button> <button ion-button color="secondary" full>Full Button</button> <button ion-button color="danger" large>Large Danger</button> <button ion-button dark> Home <ion-icon name="home"></ion-icon> </button> </ion-content> ...
Read now
Unlock full access