React Native
Volume Selector Component

Volume Selector Component

The Volume Selector Component is a component that allows you to indicate to your customers which banks are available to them.

This is suitable to be placed in the checkout flow of your application if you for example have multiple pages with radio buttons.

See the UX Guidelines (opens in a new tab) for more information on the Volume Selector component.

Volume Selector

Prior to selecting a bank with radio buttonAfter selecting a bank with radio button

Usage

Import the VolumeSelector component and render it in your application.

import { VolumeSelector } from "@getvolume/react-native";
 
function MyComponent() {
  return (
    <View>
      <VolumeSelector currency="GBP" country="GB" height={40} />
    </View>
  );
}

Properties

proptypeexampledescription
currencystring"GBP"Currency of payment
countrystring"GB"Country of origin of the payment.
heightnumber (Optional)40Total height of the component in px

Why Currency and Country

We show banks based on the country and currency of the payment.

Only banks that support the given currency and country will be shown.