React native

Before proceeding, ensure that you have set up a partner account with us. If you have not yet done so, please follow this guide to create a partner account in less than 30 seconds and copy your Staging API KEY.

1. React Native Installation

a. Install package

npm install transfi-ramp-react-native-sdk
yarn add transfi-ramp-react-native-sdk

b. Usage

import { TransfiRampReactNativeSdkView } from 'transfi-ramp-react-native-sdk';

// ...

<TransfiRampReactNativeSdkView
  styles={styles.webview}
  source={{
    uri: 'https://buy.transfi.com/?apiKey=[YOUR_API_KEY][QUERY_PARAMETERS]',
  }}
  javaScriptEnabled={true}
  messagingEnabled={true}
  domStorageEnabled={true}
  onMessage={(event) => {
    console.log('event', event?.nativeEvent?.data);
  }}
/>;

2. React native package

You can check out React Native Transfi repo.