ionic button


Buttons are an integral part of mobile apps. Different styles of apps require different button styles.

By default, the button display style is: display: inline-block.

<button class="button">
  Default
</button>

<button class="button button-light">
  button-light
</button>

<button class="button button-stable">
  button-stable
</button>

<button class="button button-positive">
  button-positive
</button>

<button class="button button-calm">
  button-calm
</button>

<button class="button button-balanced">
  button-balanced
</button>

<button class="button button-energized">
  button-energized
</button>

<button class="button button-assertive">
  button-assertive
</button>

<button class="button button-royal">
  button-royal
</button>

<button class="button button-dark">
  button-dark
</button>

button-block style button is displayed as: display: block, which will completely fill the width of the parent element, including the inner edge Distance attribute padding.

<button class="button button-block button-positive">
  Block Button
</button>

Using the button-full class allows the button to display its full width without padding.

<button class="button button-full button-positive">
  Full Width Block Button
</button>


Buttons of different sizes

button-large is set to a large button, button-small is set to a small button.

<button class="button button-small button-assertive">
  Small Button
</button>
<button class="button button-large button-positive">
  Large Button
</button>


No background button

button-outline Set the background to transparent.

<button class="button button-outline button-positive">
  Outlined Button
</button>


No background and border button

button-clear Set the button background to be transparent and without borders.

<button class="button button-clear button-positive">
  Clear Button
</button>

Icon button

We can add icons to buttons.

<button class="button">
  <i class="icon ion-loading-c"></i> Loading...
</button>

<button class="button icon-left ion-home">Home</button>

<button class="button icon-left ion-star button-positive">Favorites</button>

<a class="button icon-right ion-chevron-right button-calm">Learn More</a>

<a class="button icon-left ion-chevron-left button-clear button-dark">Back</a>

<button class="button icon ion-gear-a"></button>

<a class="button button-icon icon ion-settings"></a>

<a class="button button-outline icon-right ion-navicon button-balanced">Reorder</a>

Add buttons to the head/bottom

Buttons can be added to the head/bottom. The style of the button is set according to the head/bottom, so you don’t need to add additional buttons to the button. style.

<div class="bar bar-header">
  <button class="button icon ion-navicon"></button>
  <h1 class="title">Header Buttons</h1>
  <button class="button">Edit</button>
</div>

button-clear class can set the head/bottom button without background and border.

<div class="bar bar-header">
  <button class="button button-icon icon ion-navicon"></button>
  <div class="h1 title">Header Buttons</div>
  <button class="button button-clear button-positive">Edit</button>
</div>

Button Bar

We can use the button-bar class to set up the button bar. In the following example, we have added a button bar in the header and content.
<div class="button-bar">
  <a class="button">First</a>
  <a class="button">Second</a>
  <a class="button">Third</a>
</div>