Need help upgrading to Ionic Framework 4.0? Get assistance with our Enterprise Migration Services EXPLORE NOW

Button

[ion-button]

Improve this doc

Buttons are simple components in Ionic. They can consist of text and icons and be enhanced by a wide range of attributes.

Usage

<!-- Colors -->
<button ion-button>Default</button>

<button ion-button color="secondary">Secondary</button>

<button ion-button color="danger">Danger</button>

<button ion-button color="light">Light</button>

<button ion-button color="dark">Dark</button>

<!-- Shapes -->
<button ion-button full>Full Button</button>

<button ion-button block>Block Button</button>

<button ion-button round>Round Button</button>

<!-- Outline -->
<button ion-button full outline>Outline + Full</button>

<button ion-button block outline>Outline + Block</button>

<button ion-button round outline>Outline + Round</button>

<!-- Icons -->
<button ion-button icon-left>
  <ion-icon name="star"></ion-icon>
  Left Icon
</button>

<button ion-button icon-right>
  Right Icon
  <ion-icon name="star"></ion-icon>
</button>

<button ion-button icon-only>
  <ion-icon name="star"></ion-icon>
</button>

<!-- Sizes -->
<button ion-button large>Large</button>

<button ion-button>Default</button>

<button ion-button small>Small</button>

Input Properties

Attr Type Details
large boolean

Large button.

small boolean

Small button.

default boolean

Default button.

outline boolean

A transparent button with a border.

clear boolean

A transparent button without a border.

solid boolean

Force a solid button. Useful for buttons within an item.

round boolean

A button with rounded corners.

block boolean

A button that fills its parent container with a border-radius.

full boolean

A button that fills its parent container without a border-radius or borders on the left/right.

strong boolean

A button that has strong importance, ie. it represents an important action.

mode string

The mode to apply to this component. Mode can be ios, wp, or md.

color string

The predefined color to use. For example: "primary", "secondary", "danger".

Advanced

<!-- Bind the color and outline inputs to an expression -->
<button ion-button [color]="isDanger ? 'danger' : 'primary'" [outline]="isOutline">
  Danger (Solid)
</button>

<!-- Bind the color and round inputs to an expression -->
<button ion-button [color]="myColor" [round]="isRound">
  Secondary (Round)
</button>

<!-- Bind the color and clear inputs to an expression -->
<button ion-button [color]="isSecondary ? 'secondary' : 'primary'"  [clear]="isClear">
  Primary (Clear)
</button>

<!-- Bind the color, outline and round inputs to an expression -->
<button ion-button [color]="myColor2" [outline]="isOutline" [round]="isRound">
  Dark (Solid + Round)
</button>

<!-- Bind the click event to a method -->
<button ion-button (click)="logEvent($event)">
  Click me!
</button>
@Component({
  templateUrl: 'main.html'
})
class E2EPage {
  isDanger: boolean = true;
  isSecondary: boolean = false;
  isRound: boolean = true;
  isOutline: boolean = false;
  isClear: boolean = true;
  myColor: string = 'secondary';
  myColor2: string = 'dark';

  logEvent(event) {
    console.log(event)
  }
}

Sass Variables

Property Default Description
$button-round-padding 0 2.6rem

Padding of the round button

$button-round-border-radius 64px

Border radius of the round button

Property Default Description
$button-ios-margin .4rem .2rem

Margin of the button

$button-ios-padding 0 1em

Padding of the button

$button-ios-height 2.8em

Height of the button

$button-ios-border-radius 4px

Border radius of the button

$button-ios-font-size 1.6rem

Font size of the button text

$button-ios-background-color color($colors-ios, primary)

Background color of the button

$button-ios-text-color color-contrast($colors-ios, $button-ios-background-color)

Text color of the button

$button-ios-background-color-activated color-shade($button-ios-background-color)

Background color of the activated button

$button-ios-opacity-activated 1

Opacity of the activated button

$button-ios-opacity-hover .8

Opacity of the button on hover

$button-ios-large-padding 0 1em

Padding of the large button

$button-ios-large-height 2.8em

Height of the large button

$button-ios-large-font-size 2rem

Font size of the large button

$button-ios-small-padding 0 .9em

Padding of the small button

$button-ios-small-height 2.1em

Height of the small button

$button-ios-small-font-size 1.3rem

Font size of the small button

$button-ios-small-icon-font-size 1.3em

Font size of an icon in the small button

$button-ios-outline-border-width 1px

Border width of the outline button

$button-ios-outline-border-style solid

Border style of the outline button

$button-ios-outline-border-radius $button-ios-border-radius

Border radius of the outline button

$button-ios-outline-border-color $button-ios-background-color

Border color of the outline button

$button-ios-outline-text-color $button-ios-background-color

Text color of the outline button

$button-ios-outline-background-color transparent

Background color of the outline button

$button-ios-outline-text-color-activated color-contrast($colors-ios, $button-ios-background-color)

Text color of the activated outline button

$button-ios-outline-background-color-activated $button-ios-background-color

Background color of the activated outline button

$button-ios-outline-opacity-activated 1

Opacity of the activated outline button

$button-ios-clear-border-color transparent

Border color of the clear button

$button-ios-clear-background-color transparent

Background color of the clear button

$button-ios-clear-background-color-activated $button-ios-clear-background-color

Background color of the activated clear button

$button-ios-clear-opacity-activated .4

Opacity of the activated clear button

$button-ios-clear-text-color-hover $button-ios-background-color

Text color of the clear button on hover

$button-ios-clear-opacity-hover .6

Opacity of the clear button on hover

$button-ios-round-padding $button-round-padding

Padding of the round button

$button-ios-round-border-radius $button-round-border-radius

Border radius of the round button

$button-ios-strong-font-weight 600

Font weight of the strong button

Property Default Description
$button-md-margin .4rem .2rem

Margin of the button

$button-md-padding 0 1.1em

Padding of the button

$button-md-height 3.6rem

Height of the button

$button-md-border-radius 2px

Border radius of the button

$button-md-font-size 1.4rem

Font size of the button text

$button-md-font-weight 500

Font weight of the button text

$button-md-text-transform uppercase

Capitalization of the button text

$button-md-background-color color($colors-md, primary)

Background color of the button

$button-md-text-color color-contrast($colors-md, $button-md-background-color)

Text color of the button

$button-md-box-shadow 0 2px 2px 0 rgba(0, 0, 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .2), 0 1px 5px 0 rgba(0, 0, 0, .12)

Box shadow of the button

$button-md-transition-duration 300ms

Duration of the transition of the button

$button-md-transition-timing-function cubic-bezier(.4, 0, .2, 1)

Speed curve of the transition of the button

$button-md-background-color-hover $button-md-background-color

Background color of the button on hover

$button-md-background-color-activated color-shade($button-md-background-color)

Background color of the activated button

$button-md-opacity-activated 1

Opacity of the activated button

$button-md-box-shadow-activated 0 3px 5px rgba(0, 0, 0, .14), 0 3px 5px rgba(0, 0, 0, .21)

Box shadow of the activated button

$button-md-ripple-background-color #555

Background color of the ripple on the button

$button-md-large-padding 0 1em

Padding of the large button

$button-md-large-height 2.8em

Height of the large button

$button-md-large-font-size 2rem

Font size of the large button

$button-md-small-padding 0 .9em

Padding of the small button

$button-md-small-height 2.1em

Height of the small button

$button-md-small-font-size 1.3rem

Font size of the small button

$button-md-small-icon-font-size 1.4em

Font size of an icon in the small button

$button-md-outline-border-width 1px

Border width of the outline button

$button-md-outline-border-style solid

Border style of the outline button

$button-md-outline-border-color $button-md-background-color

Border color of the outline button

$button-md-outline-text-color $button-md-background-color

Text color of the outline button

$button-md-outline-background-color transparent

Background color of the outline button

$button-md-outline-box-shadow none

Box shadow of the outline button

$button-md-outline-background-color-hover rgba(158, 158, 158, .1)

Background color of the outline button on hover

$button-md-outline-background-color-activated transparent

Background color of the activated outline button

$button-md-outline-box-shadow-activated none

Box shadow of the activated outline button

$button-md-outline-opacity-activated 1

Opacity of the activated outline button

$button-md-outline-ripple-background-color $button-md-background-color

Background color of the ripple on the outline button

$button-md-clear-border-color transparent

Border color of the clear button

$button-md-clear-text-color $button-md-background-color

Text color of the clear button

$button-md-clear-background-color transparent

Background color of the clear button

$button-md-clear-box-shadow none

Box shadow of the clear button

$button-md-clear-opacity 1

Opacity of the clear button

$button-md-clear-background-color-activated rgba(158, 158, 158, .2)

Background color of the activated clear button

$button-md-clear-box-shadow-activated $button-md-clear-box-shadow

Box shadow of the activated clear button

$button-md-clear-background-color-hover rgba(158, 158, 158, .1)

Background color of the clear button on hover

$button-md-clear-ripple-background-color #999

Background color of the ripple on the clear button

$button-md-round-padding $button-round-padding

Padding of the round button

$button-md-round-border-radius $button-round-border-radius

Border radius of the round button

$button-md-strong-font-weight bold

Font weight of the strong button

Property Default Description
$button-wp-margin .4rem .2rem

Margin of the button

$button-wp-padding 0 1.1em

Padding of the button

$button-wp-height 3.6rem

Height of the button

$button-wp-border-width 3px

Border width of the button

$button-wp-border-style solid

Border style of the button

$button-wp-border-color transparent

Border color of the button

$button-wp-border-radius 0

Border radius of the button

$button-wp-font-size 1.4rem

Font size of the button text

$button-wp-background-color color($colors-wp, primary)

Background color of the button

$button-wp-text-color color-contrast($colors-wp, $button-wp-background-color)

Text color of the button

$button-wp-background-color-activated color-shade($button-wp-background-color)

Background color of the activated button

$button-wp-large-padding 0 1em

Padding of the large button

$button-wp-large-height 2.8em

Height of the large button

$button-wp-large-font-size 2rem

Font size of the large button

$button-wp-small-padding 0 .9em

Padding of the small button

$button-wp-small-height 2.1em

Height of the small button

$button-wp-small-font-size 1.3rem

Font size of the small button

$button-wp-small-icon-font-size 1.4em

Font size of an icon in the small button

$button-wp-outline-border-width 1px

Border width of the outline button

$button-wp-outline-border-style solid

Border style of the outline button

$button-wp-outline-border-color $button-wp-background-color

Border color of the outline button

$button-wp-outline-text-color $button-wp-background-color

Text color of the outline button

$button-wp-outline-background-color transparent

Background color of the outline button

$button-wp-outline-background-color-activated $button-wp-background-color

Background color of the activated outline button

$button-wp-outline-background-color-opacity-activated .16

Opacity of the background color of the activated outline button

$button-wp-clear-text-color $button-wp-background-color

Text color of the clear button

$button-wp-clear-background-color transparent

Background color of the clear button

$button-wp-clear-background-color-activated rgba(158, 158, 158, .2)

Background color of the activated clear button

$button-wp-clear-background-color-hover rgba(158, 158, 158, .1)

Background color of the clear button on hover

$button-wp-round-padding $button-round-padding

Padding of the round button

$button-wp-round-border-radius $button-round-border-radius

Border radius of the round button

$button-wp-strong-font-weight bold

Font weight of the strong button

Related

Button Component Docs, FabButton Docs, FabButton API Docs, FabContainer API Docs

API

Native

General