npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

payout-react-native-sdk

v1.4.0

Published

Payout SDK for React native

Readme

Payout React Native SDK

Payout SDK for React native

Installation

Use the package manager to install.

npm i --save payout-react-native-sdk
npm i --save react-native-webview
cd ios && pod install

Usage

Package exports React Native component

import { PayoutPayment } from 'payout-react-native-sdk';

...

<PayoutPayment checkoutUrl={'your_checkout_url'} uiSettings={'your_ui_settings'} />

...

Props

| Prop | Type | Note | | ------------- | ------------- | ---------| | checkoutUrl | string | provide checkout url from checkout request | | uiSettings | { } | object of UI settings | | props | { } | props of WebView |

UI Settings

Example UI settings object

{
    remove_header: true,
    show_card_payment: false,
    background_color: "#8DA5CC",
    button_border_radius: 12
}

General

| Attribute | Type | Description | Example | | ------------- | ------------- | ---------| ----| |color|string|Default font color for screen.|#000000| |anchor_color|string|Color of anchors|#FFFFFF| |background_color|string|Background color of screen|#FFFFFF| |form_background_color|string|Background color of payment form|transparent| |form_border_radius|number|Payment form border radius|8| |form_border_color|string|Payment form border color|#000000| |form_border_size|number|Payment form border size|1| |form_no_margin|bool|Disable payment form margin|false| |remove_header|bool|Remove payment form header|false| |remove_footer|bool|Remove payment form footer|false| |show_card_payment|bool|Show card payment method|false| |show_bank_payment|bool|Show bank transfer payment method|false| |show_online_payment|bool|Show online payment method|false|

####Buttons

| Attribute | Type | Description | Example | | ------------- | ------------- | ---------| ----| |button_color|string|Button font color|#FFFFFF| |button_background_color|string|Button background color|#FFFFFF| |button_border_size|number|Button border size|1| |button_border_color|string|Button border color|#FFFFFF| |button_border_radius|number|Button border radius|8| |button_hover_background_color|string|Button background color on hover|#FFFFFF| |button_hover_border_color|string|Button border color on hover|#FFFFFF| |button_hover_color|string|Button font color on hover|#FFFFFF| |submit_button_background_color|string|Button background color on click|#FFFFFF| |submit_button_border_color|string|Button border color on click|#FFFFFF| |submit_button_color|string|Button font color on click|#FFFFFF|

####Card input, Expiration input, CVV input

| Attribute | Type | Description | Example | | ------------- | ------------- | ---------| ----| |input_color|string|Font color of input field|#000000| |input_background_color|string|Background color of input field|transparent| |input_border_radius|number|Border radius of input field|8| |input_border_color|string|Border color of input field|#000000| |input_border_size|number|Border size of input field|1|

##Demo

Demo app