react-native-esewa
v1.0.5
Published
React native wrapper for eSewa SDk.
Downloads
104
Maintainers
Readme
react-native-esewa
Getting started
$ npm install react-native-esewa --save
Or
$ yarn add react-native-esewa
Mostly automatic installation
$ react-native link react-native-esewa
Usage
import Esewa from 'react-native-esewa';
// INITILIZE
Esewa.init(MERCHANT_ID,MERCHANT_SECRET_KEY,ENVIRONMENT);
// Calling helper function to make payment through esewa.
Esewa.makePayment(amount,productName,productID,callbackURL);
// JS implementation
function onPress(){
Esewa.init(MERCHANT_ID,MERCHANT_SECRET_KEY,ENVIRONMENT);
Esewa.makePayment(amount,productName,productID,callbackURL);
}
// TODO: iOS