Installation
Follow the steps below to install the Ratio React Native Library
npm install @ratio.me/ratio-react-native-library
or
yarn add @ratio.me/ratio-react-native-library
Our library has a peer dependancy on the following
-
react-native-webview: "11.x"
- react-native-plaid-link-sdk: "9.x"
- react-native-svg: "12.x || 13.x"
This means you must add
react-native-webview,
react-native-svg
, and react-native-plaid-link-sdk
as dependancies by running the followingnpm install react-native-webview --save
npm install react-native-svg --save
npm install react-native-plaid-link-sdk --save
or
yarn add react-native-webview
yarn add react-native-svg
yarn add react-native-plaid-link-sdk
NOTE: it is important to make sure you use the
--save
flag, this will make sure the native code is autolinked. Read more about React Native Auto linking hereIf your application requires that external traffic is whitelisted, please reach out to us for a list of domains that will need to be whitelisted in your application package. The list includes OAuth connected banks such as Chase.
Last modified 3mo ago