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.
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
prop | type | example | description |
---|---|---|---|
currency | string | "GBP" | Currency of payment |
country | string | "GB" | Country of origin of the payment. |
height | number (Optional) | 40 | Total 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.