Skip to content

Latest commit

 

History

History
56 lines (43 loc) · 2.29 KB

File metadata and controls

56 lines (43 loc) · 2.29 KB

Apple Pay button

Provides a button that is used either to trigger payments through Apple Pay or to prompt the user to set up a card.

ApplePayButton uses native API provided by Apple. Due to this fact, button meets User Interface guidelines required by Apple in review process. Make sure you consult Human Interface Guidelines prior to submitting app to App Store.

Styling

Button type

Type dictates button's call to action word and a message. Each option includes the Apple Pay logo alone and the call to action word (based on button type) with message along with the logo. The API will provide a localization of the action word with message based on the user’s language settings. Do not create your own localized payment button.

Apple pay button - types

Button style

In addition to button's type, you can set button's visual appearance. For iOS and web, button artwork is provided in black, white, and white with an outline rule.

Apple pay button - styles

Props

Prop name required Type Default Value
type yes ButtonType
style yes ButtonStyle
onPress yes Function
width no number
height no number 44

Types

type ButtonType =
  // A button with the Apple Pay logo only.
  | 'plain'
  // A button with the text “Buy with” and the Apple Pay logo.
  | 'buy'
  // A button prompting the user to set up a card.
  | 'setUp'
  // A button with the text “Pay with” and the Apple Pay logo.
  | 'inStore'
  // A button with the text "Donate with" and the Apple Pay logo.
  | 'donate';

type ButtonStyle =
  //   A white button with black lettering (shown here against a gray background to ensure visibility).
  | 'white'
  //   A white button with black lettering and a black outline.
  | 'whiteOutline'
  //   A black button with white lettering.
  | 'black';