Options
All
  • Public
  • Public/Protected
  • All
Menu

Props

Hierarchy

  • AccessibilityProps
    • AddressSheetProps

Index

Properties

accessible?: boolean

When true, indicates that the view is an accessibility element. By default, all the touchable elements are accessible.

accessibilityActions?: readonly Readonly<{ name: AccessibilityActionName; label?: string }>[]

Provides an array of custom actions available for accessibility.

accessibilityLabel?: string

Overrides the text that's read by the screen reader when the user interacts with the element. By default, the label is constructed by traversing all the children and accumulating all the Text nodes separated by space.

accessibilityRole?: AccessibilityRole

Accessibility Role tells a person using either VoiceOver on iOS or TalkBack on Android the type of element that is focused on.

accessibilityState?: AccessibilityState

Accessibility State tells a person using either VoiceOver on iOS or TalkBack on Android the state of the element currently focused on.

accessibilityHint?: string

An accessibility hint helps users understand what will happen when they perform an action on the accessibility element when that result is not obvious from the accessibility label.

accessibilityValue?: AccessibilityValue

Represents the current value of a component. It can be a textual description of a component's value, or for range-based components, such as sliders and progress bars, it contains range information (minimum, current, and maximum).

accessibilityComponentType?: "none" | "button" | "radiobutton_checked" | "radiobutton_unchecked"

In some cases, we also want to alert the end user of the type of selected component (i.e., that it is a “button”). If we were using native buttons, this would work automatically. Since we are using javascript, we need to provide a bit more context for TalkBack. To do so, you must specify the ‘accessibilityComponentType’ property for any UI component. For instances, we support ‘button’, ‘radiobutton_checked’ and ‘radiobutton_unchecked’ and so on.

platform

android

accessibilityLiveRegion?: "none" | "polite" | "assertive"

Indicates to accessibility services whether the user should be notified when this view changes. Works for Android API >= 19 only. See http://developer.android.com/reference/android/view/View.html#attr_android:accessibilityLiveRegion for references.

platform

android

importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants"

Controls how view is important for accessibility which is if it fires accessibility events and if it is reported to accessibility services that query the screen. Works for Android only. See http://developer.android.com/reference/android/R.attr.html#importantForAccessibility for references.

Possible values: 'auto' - The system determines whether the view is important for accessibility - default (recommended). 'yes' - The view is important for accessibility. 'no' - The view is not important for accessibility. 'no-hide-descendants' - The view is not important for accessibility, nor are any of its descendant views.

accessibilityElementsHidden?: boolean

A Boolean value indicating whether the accessibility elements contained within this accessibility element are hidden to the screen reader.

platform

ios

accessibilityTraits?: AccessibilityTrait | AccessibilityTrait[]

Accessibility traits tell a person using VoiceOver what kind of element they have selected. Is this element a label? A button? A header? These questions are answered by accessibilityTraits.

platform

ios

accessibilityViewIsModal?: boolean

A Boolean value indicating whether VoiceOver should ignore the elements within views that are siblings of the receiver.

platform

ios

accessibilityIgnoresInvertColors?: boolean
visible: boolean

Whether the sheet is visible. Defaults to false.

presentationStyle?: "fullscreen" | "popover" | "pageSheet" | "formSheet" | "automatic" | "overFullScreen"

Controls how the modal is presented (after animation). iOS only. Defaults to popover. See https://developer.apple.com/documentation/uikit/uimodalpresentationstyle for more info.

animationStyle?: "flip" | "curl" | "slide" | "dissolve"

Controls how the modal animates. iOS only.

appearance?: RecursivePartial<{ font: FontConfig; colors: GlobalColorConfig | { light: GlobalColorConfig; dark: GlobalColorConfig }; shapes: { borderRadius: number; borderWidth: number; shadow: ShadowConfig }; primaryButton: PrimaryButtonConfig }>

Configuration for the look and feel of the UI.

defaultValues?: AddressDetails

The values to prepopulate the sheet's fields with.

additionalFields?: { phoneNumber?: "hidden" | "optional" | "required"; checkboxLabel?: string }

Configuration for additional fields besides the physical address

Type declaration

  • Optional phoneNumber?: "hidden" | "optional" | "required"

    Determines whether the phone number is hidden, required, or optional. Defaults to hidden.

  • Optional checkboxLabel?: string

    The label of a checkbox displayed below other fields. If null or undefined, the checkbox is not displayed.

allowedCountries?: string[]

A list of two-letter country codes representing countries the customers can select. If the list is empty (the default), we display all countries.

autocompleteCountries?: string[]

A list of two-letter country codes representing countries that support address autocomplete. Defaults to a list of countries that Stripe has audited to ensure a good autocomplete experience.

primaryButtonTitle?: string

The title of the primary button displayed at the bottom of the screen. Defaults to "Save Address".

sheetTitle?: string

Title displayed at the top of the sheet. Defaults to "Address".

googlePlacesApiKey?: string

Android only. Google Places api key used to provide autocomplete suggestions. When null, autocomplete is disabled on Android.

Methods

  • onAccessibilityAction(event: AccessibilityActionEvent): void
  • When accessible is true, the system will try to invoke this function when the user performs an accessibility custom action.

    Parameters

    • event: AccessibilityActionEvent

    Returns void

  • onAccessibilityEscape(): void
  • When accessibile is true, the system will invoke this function when the user performs the escape gesture (scrub with two fingers).

    platform

    ios

    Returns void

  • onAccessibilityTap(): void
  • When accessible is true, the system will try to invoke this function when the user performs accessibility tap gesture.

    platform

    ios

    Returns void

  • onMagicTap(): void
  • When accessible is true, the system will invoke this function when the user performs the magic tap gesture.

    platform

    ios

    Returns void

Generated using TypeDoc