mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-21 21:15:24 +08:00

- add spacing between imports - alphabetize imports - removed app.html files in favor of an inline ion-nav - cleaned up config demo so it uses proper syntax - use file name main.html for the first page for the demo - name the app ApiDemoApp and first page ApiDemoPage - replace the ion-toolbars with ion-navbars closes #7019 closes driftyco/ionic-site#647
69 lines
1.1 KiB
HTML
69 lines
1.1 KiB
HTML
<ion-header>
|
|
|
|
<ion-navbar>
|
|
<ion-title>Button</ion-title>
|
|
</ion-navbar>
|
|
|
|
</ion-header>
|
|
|
|
|
|
<ion-content text-center>
|
|
|
|
<h4>Colors</h4>
|
|
|
|
<button>Default</button>
|
|
|
|
<button secondary>Secondary</button>
|
|
|
|
<button danger>Danger</button>
|
|
|
|
<button light>Light</button>
|
|
|
|
<button dark>Dark</button>
|
|
|
|
<h4>Shapes</h4>
|
|
|
|
<button full>Full Button</button>
|
|
|
|
<button block>Block Button</button>
|
|
|
|
<button round>Round Button</button>
|
|
|
|
<button fab style="position: relative;">FAB</button>
|
|
|
|
<h4>Outlines</h4>
|
|
|
|
<button secondary full outline>Outline + Full</button>
|
|
|
|
<button secondary block outline>Outline + Block</button>
|
|
|
|
<button secondary round outline>Outline + Round</button>
|
|
|
|
<button secondary fab outline style="position: relative;">FAB</button>
|
|
|
|
<h4>Icons</h4>
|
|
|
|
<button dark>
|
|
<ion-icon name="star"></ion-icon>
|
|
Left Icon
|
|
</button>
|
|
|
|
<button dark>
|
|
Right Icon
|
|
<ion-icon name="star"></ion-icon>
|
|
</button>
|
|
|
|
<button dark>
|
|
<ion-icon name="star"></ion-icon>
|
|
</button>
|
|
|
|
<h4>Sizes</h4>
|
|
|
|
<button light large>Large</button>
|
|
|
|
<button light>Default</button>
|
|
|
|
<button light small>Small</button>
|
|
|
|
</ion-content>
|