Skip to the content.

React Native Paystack WebView (v5)

Modern, hook-based, Paystack-powered payments in React Native apps using WebViews β€” now streamlined with Provider architecture & fully customizable.

Endorsed by Paystack, so you know you’re in good hands. Payment processing has never been this easy! All Contributors
Screenshot of library in action

πŸš€ Installation

npm install react-native-paystack-webview
# or
yarn add react-native-paystack-webview

πŸ“¦ Peer Dependency

yarn add react-native-webview

# iOS
cd ios && pod install

# Expo
npx expo install react-native-webview

⚑ Quick Start

Wrap your app with the Provider

import { PaystackProvider } from 'react-native-paystack-webview';

<PaystackProvider publicKey="pk_test_XXXXXX">
  <App />
</PaystackProvider>

Use in a component

import React from 'react';
import { Button } from 'react-native';
import { usePaystack } from 'react-native-paystack-webview';

const Checkout = () => {
  const { popup } = usePaystack();

  const payNow = () => {
    popup.checkout({
      email: 'jane.doe@example.com',
      amount: 5000,
      reference: 'TXN_123456',
      plan: 'PLN_example123',
      invoice_limit: 3,
      subaccount: 'SUB_abc123',
      split_code: 'SPL_def456',
      split: {
        type: 'percentage',
        bearer_type: 'account',
        subaccounts: [
          { subaccount: 'ACCT_abc', share: 60 },
          { subaccount: 'ACCT_xyz', share: 40 }
        ]
      },
      metadata: {
        custom_fields: [
          {
            display_name: 'Order ID',
            variable_name: 'order_id',
            value: 'OID1234'
          }
        ]
      },
      onSuccess: (res) => console.log('Success:', res),
      onCancel: () => console.log('User cancelled'),
      onLoad: (res) => console.log('WebView Loaded:', res),
      onError: (err) => console.log('WebView Error:', err)
    });
  };

  return <Button title="Pay Now" onPress={payNow} />;
};

🧠 Features


πŸ“˜ API Reference

PaystackProvider

Prop Type Default Description
publicKey string β€” Your Paystack public key
currency string NGN NGN / GHS / USD
defaultChannels string[] ['card'] Payment channels
debug boolean false Show debug logs
onGlobalSuccess func β€” Called on all successful transactions
onGlobalCancel func β€” Called on all cancelled transactions

popup.checkout() / popup.newTransaction()

Param Type Required Description
email string βœ… Customer email
amount number βœ… Amount in Naira (not kobo)
reference string β€” Custom reference (optional)
metadata object β€” Custom fields / additional info
plan string β€” Paystack plan code (for subscriptions)
invoice_limit number β€” Max charges during subscription
subaccount string β€” Subaccount code for split payment
split_code string β€” Multi-split identifier
split object β€” Dynamic split object
onSuccess (res) => void βœ… Called on successful payment
onCancel () => void βœ… Called on cancellation
onLoad (res) => void β€” Triggered when transaction view loads
onError (err) => void β€” Triggered on WebView or script error

Meta Props

Name Description Required? Default Value
cart_id A unique identifier for the cart. Can be either a string or a number. NO undefined
custom_fields An array of custom fields for adding additional metadata to the transaction. If not passed, a default custom field is created using the firstName, lastName, and billingName. NO [{ display_name: '${firstName + ' ' + lastName}', variable_name: '${billingName}', value: '' }]
cancel_action A string specifying the action to take if a transaction is canceled. NO undefined
custom_filters Custom filters to restrict or specify transaction options, such as: NO undefined
Β  - recurring: A boolean to indicate if the transaction is recurring. Β  Β 
Β  - banks: An array of bank codes for supported banks. Β  Β 
Β  - card_brands: Supported card brands, e.g., 'verve', 'visa', 'mastercard'. Β  Β 
Β  - supported_mobile_money_providers: Supported mobile money providers, e.g., 'mtn', 'atl', 'vod'. Β  Β 

Dynamic Multi-Split Payment Object structure

Name use/description required?
type Dynamic Multi-Split type. Value can be flat or percentage YES
bearer_type Defines who bears the charges. Value can be all, all-proportional, account or subaccount YES
subaccounts An array of subaccount object as defined below. e.g. {β€œsubaccount”: β€˜ACCT_xxxxxx’, β€œshare”: 60} YES
bearer_subaccount Subaccount code of the bearerof the transaction. It should be specified if bearer_type is subaccount NO
reference Unique reference of the split. Can be defined by the user NO

Dynamic Multi-Split Payment Sub-Account Object structure

Name use/description required?
subaccount Specify subaccount code generated from the Paystack Dashboard or API to enable Split Payment on the transaction. Here’s an example of usage: subaccount: "SUB_ACCOUNTCODE" YES
share Defines the amount in percentage (integer) or value (decimal allowed) depending on the type of multi-split defined YES

πŸ§ͺ Debugging

Enable debug={true} on the PaystackProvider to get logs like:


Contributions

Want to help improve this package? Read how to contribute and feel free to submit your PR!


Licensing

This project is licensed under the MIT License.



Video Tutorial


Sponsorship


Thanks to Our Superheroes ✨

A huge shoutout to our amazing contributors! Your efforts make this project better every day. Check out the (emoji key) for what each contribution means:

Oluwatobi Shokunbi
Oluwatobi Shokunbi

πŸ’» πŸ“–
Akinyemi Mosolasi
Akinyemi Mosolasi

πŸ“– πŸ’»
okechukwu0127
okechukwu0127

πŸ’» πŸ›
Johney
Johney

πŸ’»
sammy
sammy

πŸ’»
Jimoh Jamiu
Jimoh Jamiu

πŸ› πŸ“– πŸ’»
Cahak George
Cahak George

πŸ’»
John Ayeni
John Ayeni

πŸ“–
majirieyowel
majirieyowel

πŸ’»
David Erinayo Obidu
David Erinayo Obidu

πŸ›
surafelbm
surafelbm

πŸ›
Rex Omiv
Rex Omiv

πŸ›
Osagie Osaigbovo Charles
Osagie Osaigbovo Charles

πŸ›
Ujjalcha1
Ujjalcha1

πŸ›
Oyefeso Oluwatunmise
Oyefeso Oluwatunmise

πŸ›
Fuad Olatunji
Fuad Olatunji

πŸ“–
Wilhelm Erasmus
Wilhelm Erasmus

πŸ’»
Matiluko Opeyemi Emmanuel
Matiluko Opeyemi Emmanuel

πŸ’» πŸ“–
Oluwamurewa Alao
Oluwamurewa Alao

πŸ’»
Emmanuel Ngene
Emmanuel Ngene

πŸ’»
Mauko
Mauko

πŸ“–
Quartus Kok
Quartus Kok

πŸ’»

This project follows the all-contributors specification. Contributions of any kind welcome!