Button
A common action that can be easily performed with one tap.
Page sections
Types
Default
Primary
Tertiary
Icon-only
Usage
Buttons represent actions, such as submitting data, launching elements, toggling visibility, etc.
Overview
- Default Button: Used for general actions in a view or in a section
- Primary Button: Used to call attention to the main action of the view or large section. Though it should generally be used only once per view, Primary Buttons can be used multiple times if representing parallel primary actions, such as “Add to cart.”
- Tertiary Button: Used for subtle actions on a view or in a section that are not a priority
- Icon-Only Button: Used for actions that can be commonly identified without words, such as “Share”
Button order
Primary actions should generally be presented first within a group of buttons.
Most directional patterns on iOS utilize the navigation bar where “Back” is in the top left and “Next” is in the top right. However, an Anatomy Primary Button can also be used when needing to call attention to directional actions.
For scenarios that require directional buttons in a horizontal group, the button type layout should appear in a more natural order.
Button groups
Use button groups when you are presenting multiple priorities or emphasis.
Similar priorities
Width
Buttons will generally be full-width of the view or parent container with minimum 16pt margins.
Buttons may support variable width based on label length for specific scenarios that may require a smaller CTA. Considerations of label length should be accounted for in addition to minimum touch target, which is 44pt x 44pt.
Behavior
Loading
Sometimes a Button represents an action whose completion doesn’t immediately occur. In such cases, Button has a loading state that communicates the action is still underway.
Visual Style
Content strategy
- Use Title Case
- Lead with a verb
- Aim for short actions, around 1-4 words
- Use simple global commands when possible: Save, Back, Next, Apply, etc.
- Add specificity with purpose (e.g. “Assign as Primary Care Physician” brings necessary meaning to the action, compared to the shorter “Assign”)
- Plan for truncation. Button automatically truncates copy that doesn’t fit, which will vary based on screen and text size
- As a general rule of thumb, write to the smallest screen size (e.g. ~30 character max for Button on 320 pts iPhone 4/4S/5/SE)
Accessibility
Characteristics
- Initiates a specific action
- Short, action-oriented label (include an accessible label for icon-only)
- Adequate spacing between touch targets
- Passes WCAG AA for active state color contrast, touch target size
Focus expectations
- All states receive focus
- Focus stays on button until action is performed (however, user focus is not trapped)
Screen reader expectations
- “{Button Label}, button”
- Loading button tapped: “{Button Label}, loading, dimmed”
- Disabled state: “{Button Label}, dimmed, button”
- Icons don’t receive focus since they are decorative (action label must be assigned for icon-only button)
- Accessibility Hint added when action label doesn’t provide enough context. (Example: Button label “Confirm Quantity”, Accessibility Hint “double tap to confirm amount and review order ”)