{"id":18815212,"url":"https://github.com/just1and0/react-native-paystack-webview","last_synced_at":"2025-04-04T14:05:39.491Z","repository":{"id":35092107,"uuid":"204890103","full_name":"just1and0/React-Native-Paystack-WebView","owner":"just1and0","description":"💸💳The package allows you accept payment using paystack and guess what, it doesn't require linking!  just install and begin to use 🚀","archived":false,"fork":false,"pushed_at":"2024-05-24T00:23:30.000Z","size":511,"stargazers_count":141,"open_issues_count":36,"forks_count":95,"subscribers_count":4,"default_branch":"master","last_synced_at":"2024-05-29T12:37:03.684Z","etag":null,"topics":["archived","deprecated","mobile","obsolete","payment","payment-gateway","payments","paystack","react-native"],"latest_commit_sha":null,"homepage":"https://paystack.com","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/just1and0.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":["just1and0"],"patreon":"just1and0","ko_fi":"just1and0"}},"created_at":"2019-08-28T08:59:28.000Z","updated_at":"2024-06-19T06:12:29.858Z","dependencies_parsed_at":"2024-02-20T22:24:00.504Z","dependency_job_id":"9fe08514-f9d7-4dbd-a953-d3b4a65f3106","html_url":"https://github.com/just1and0/React-Native-Paystack-WebView","commit_stats":{"total_commits":133,"total_committers":15,"mean_commits":8.866666666666667,"dds":0.6090225563909775,"last_synced_commit":"faa68fce5a4c88e4bd80938364a4becd68e4944a"},"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/just1and0%2FReact-Native-Paystack-WebView","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/just1and0%2FReact-Native-Paystack-WebView/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/just1and0%2FReact-Native-Paystack-WebView/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/just1and0%2FReact-Native-Paystack-WebView/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/just1and0","download_url":"https://codeload.github.com/just1and0/React-Native-Paystack-WebView/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247190248,"owners_count":20898702,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["archived","deprecated","mobile","obsolete","payment","payment-gateway","payments","paystack","react-native"],"created_at":"2024-11-07T23:48:05.846Z","updated_at":"2025-04-04T14:05:39.469Z","avatar_url":"https://github.com/just1and0.png","language":"JavaScript","funding_links":["https://github.com/sponsors/just1and0","https://patreon.com/just1and0","https://ko-fi.com/just1and0"],"categories":[],"sub_categories":[],"readme":"# React Native Paystack WebView\n[![All Contributors](https://img.shields.io/badge/all_contributors-9-orange.svg?style=flat-square)](#contributors-) \n[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://reactjs.org/docs/how-to-contribute.html#your-first-pull-request) \n \n\nThe package allows you accept payment using paystack, install, add keys and use. No stress :) \n\n### [](https://github.com/just1and0/React-Native-Paystack-WebView#installation)Installation\n\nAdd React-Native-Paystack-WebView to your project by running;\n\n`npm install react-native-paystack-webview`\n\nor\n\n`yarn add react-native-paystack-webview`\n\n### **One more thing**\n\nTo frontload the installation work, let's also install and configure dependencies used by this project, being **react-native-webview** \n\nrun\n\n`yarn add react-native-webview`\n\nfor iOS: `cd iOS \u0026\u0026 pod install \u0026\u0026 cd ..`\n\nfor expo applications run;\n\n`expo install react-native-webview`\n\nand that's it, you're all good to go!\n\n\u003cimg width=\"306\" alt=\"Screenshot of library in action\" src=\"https://user-images.githubusercontent.com/41248079/126550307-5f12c6d8-81af-4f26-951b-5d6514304022.png\"\u003e\n\n### [](https://github.com/just1and0/React-Native-Paystack-WebView#usage)Usage 1\n\n```javascript\nimport React from 'react';\nimport  { Paystack }  from 'react-native-paystack-webview';\nimport { View } from 'react-native';\n\nfunction Pay() {\n  return (\n    \u003cView style={{ flex: 1 }}\u003e\n      \u003cPaystack  \n        paystackKey=\"your-public-key-here\"\n        amount={'25000.00'}\n        billingEmail=\"paystackwebview@something.com\"\n        activityIndicatorColor=\"green\"\n        onCancel={(e) =\u003e {\n          // handle response here\n        }}\n        onSuccess={(res) =\u003e {\n          // handle response here\n        }}\n        autoStart={true}\n      /\u003e\n    \u003c/View\u003e\n  );\n}\n```\n\n## Usage 2 - Using Refs\n\nMake use of a `ref` to start transaction. See example below;\n\n```javascript\nimport React, { useRef } from 'react';\nimport  { Paystack , paystackProps}  from 'react-native-paystack-webview';\nimport { View, TouchableOpacity,Text } from 'react-native';\n\nfunction Pay(){\n  const paystackWebViewRef = useRef\u003cpaystackProps.PayStackRef\u003e(); \n\n  return (\n    \u003cView style={{flex: 1}}\u003e\n      \u003cPaystack\n        paystackKey=\"your-public-key-here\"\n        billingEmail=\"paystackwebview@something.com\"\n        amount={'25000.00'}\n        onCancel={(e) =\u003e {\n          // handle response here\n        }}\n        onSuccess={(res) =\u003e {\n          // handle response here\n        }}\n        ref={paystackWebViewRef}\n      /\u003e\n\n        \u003cTouchableOpacity onPress={()=\u003e paystackWebViewRef.current.startTransaction()}\u003e\n          \u003cText\u003ePay Now\u003c/Text\u003e\n        \u003c/TouchableOpacity\u003e\n      \u003c/View\u003e\n  );\n}\n```\n\n## API's\n\n#### [](https://github.com/just1and0/object-to-array-convert#all-object-to-array-convert-props)all React-Native-Paystack-WebView API\n\n| Name                                 |                                                                                           use/description                                                                                           |                                                      extra |\n| :----------------------------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | ---------------------------------------------------------: |\n| `paystackKey`                        |                                                                   Public or Private paystack key(visit paystack.com to get yours)                                                                   |                                                     `nill` |\n| `amount`                             |                                                                                          Amount to be paid                                                                                          |                                                     `nill` |\n| `activityIndicatorColor`             |                                                                                           color of loader                                                                                           |                                           default: `green` |\n| `billingEmail(required by paystack)` |                                                                                            Billers email                                                                                            |                                            default: `nill` |\n| `billingMobile`                      |                                                                                           Billers mobile                                                                                            |                                            default: `nill` |\n| `billingName`                        |                                                                                            Billers Name                                                                                             |                                            default: `nill` |\n| `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\"`                                                                                              |                                            default: `nill` |\n| `channels`                           | Specify payment options available to users. Available channel options are: [\"card\", \"bank\", \"ussd\", \"qr\", \"mobile_money\"]. Here's an example of usage: `channels={[\"card\",\"ussd\"]}`                 |                                         default: `[\"card\"]`|\n| `onCancel`                           |               callback function if user cancels or payment transaction could not be verified. In a case of not being verified, transactionRef number is also returned in the callback               |                                            default: `nill` |\n| `onSuccess`                          |                                    callback function if transaction was successful and verified (it will also return the transactionRef number in the callback )                                    |                                            default: `nill` |\n| `autoStart`                          |                                                                               Auto start payment once page is opened                                                                                |                                           default: `false` |\n| `refNumber`                          |                                                                         Reference number, if you have already generated one                                                                         | default: `''+Math.floor((Math.random() * 1000000000) + 1)` |\n| `handleWebViewMessage`               |                                                                          Will be called when a WebView receives a message                                                                           |                                            default: `true` |\n\n\n## [](https://github.com/just1and0/object-to-array-convert#contributions)Contributions\n\nWant to help make this package even more awesome? [Read how to contribute](https://github.com/just1and0/React-Native-Paystack-WebView/blob/master/CONTRIBUTING.md) and feel free to send in your PR!\n\n## [](https://github.com/just1and0/React-Native-Paystack-WebView#licensing)Licensing\n\nThis project is licensed under MIT license.\n\n## Related Projects\n\n- [React-Native-quidpay-WebView](https://github.com/react-native-nigeria/react-native-quidpay-webview)\n- [React-Native-rave-WebView](https://github.com/react-native-nigeria/react-native-rave-webview)\n\n### Video Tutorial\n\n- [Accepting Payment With Paystack In React Native](https://www.youtube.com/watch?v=M-V4Q9zk9DE\u0026t=19s) by [just1and0](https://twitter.com/just1and0)\n\n### Don't forget to star, like and share :)\n\n## Contributors ✨\n\nThanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):\n\n\u003c!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section --\u003e\n\u003c!-- prettier-ignore-start --\u003e\n\u003c!-- markdownlint-disable --\u003e\n\u003ctable\u003e\n  \u003ctbody\u003e\n    \u003ctr\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://linksnest.com/just1and0\"\u003e\u003cimg src=\"https://avatars3.githubusercontent.com/u/17249207?v=4?s=100\" width=\"100px;\" alt=\"Oluwatobi Shokunbi \"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eOluwatobi Shokunbi \u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/just1and0/React-Native-Paystack-WebView/commits?author=just1and0\" title=\"Code\"\u003e💻\u003c/a\u003e \u003ca href=\"https://github.com/just1and0/React-Native-Paystack-WebView/commits?author=just1and0\" title=\"Documentation\"\u003e📖\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://github.com/mosoakinyemi\"\u003e\u003cimg src=\"https://avatars2.githubusercontent.com/u/41248079?v=4?s=100\" width=\"100px;\" alt=\"Akinyemi Mosolasi\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eAkinyemi Mosolasi\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/just1and0/React-Native-Paystack-WebView/commits?author=mosoakinyemi\" title=\"Documentation\"\u003e📖\u003c/a\u003e \u003ca href=\"https://github.com/just1and0/React-Native-Paystack-WebView/commits?author=mosoakinyemi\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://github.com/okechukwu0127\"\u003e\u003cimg src=\"https://avatars0.githubusercontent.com/u/23473673?v=4?s=100\" width=\"100px;\" alt=\"okechukwu0127\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eokechukwu0127\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/just1and0/React-Native-Paystack-WebView/commits?author=okechukwu0127\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://github.com/johneyo\"\u003e\u003cimg src=\"https://avatars2.githubusercontent.com/u/36991140?v=4?s=100\" width=\"100px;\" alt=\"Johney\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eJohney\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/just1and0/React-Native-Paystack-WebView/commits?author=johneyo\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://twitter.com/AjeboDeveloper\"\u003e\u003cimg src=\"https://avatars2.githubusercontent.com/u/27306463?v=4?s=100\" width=\"100px;\" alt=\"sammy\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003esammy\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/just1and0/React-Native-Paystack-WebView/commits?author=samie820\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://github.com/walexanderos\"\u003e\u003cimg src=\"https://avatars0.githubusercontent.com/u/36700043?v=4?s=100\" width=\"100px;\" alt=\"Jimoh Jamiu\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eJimoh Jamiu\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/just1and0/React-Native-Paystack-WebView/issues?q=author%3Awalexanderos\" title=\"Bug reports\"\u003e🐛\u003c/a\u003e \u003ca href=\"https://github.com/just1and0/React-Native-Paystack-WebView/commits?author=walexanderos\" title=\"Documentation\"\u003e📖\u003c/a\u003e \u003ca href=\"https://github.com/just1and0/React-Native-Paystack-WebView/commits?author=walexanderos\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://medium.com/@cahakgeorge\"\u003e\u003cimg src=\"https://avatars3.githubusercontent.com/u/8522701?v=4?s=100\" width=\"100px;\" alt=\"Cahak George\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eCahak George\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/just1and0/React-Native-Paystack-WebView/commits?author=cahakgeorge\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://johnayeni.xyz\"\u003e\u003cimg src=\"https://avatars0.githubusercontent.com/u/22295092?v=4?s=100\" width=\"100px;\" alt=\"John Ayeni\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eJohn Ayeni\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/just1and0/React-Native-Paystack-WebView/commits?author=johnayeni\" title=\"Documentation\"\u003e📖\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://github.com/majirieyowel\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/30162976?v=4?s=100\" width=\"100px;\" alt=\"majirieyowel\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003emajirieyowel\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/just1and0/React-Native-Paystack-WebView/commits?author=majirieyowel\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://github.com/Zeusmist\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/51177741?v=4?s=100\" width=\"100px;\" alt=\"David Erinayo Obidu\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eDavid Erinayo Obidu\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/just1and0/React-Native-Paystack-WebView/issues?q=author%3AZeusmist\" title=\"Bug reports\"\u003e🐛\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://github.com/surafelbm\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/11531221?v=4?s=100\" width=\"100px;\" alt=\"surafelbm\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003esurafelbm\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/just1and0/React-Native-Paystack-WebView/issues?q=author%3Asurafelbm\" title=\"Bug reports\"\u003e🐛\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://github.com/omivrex\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/42608841?v=4?s=100\" width=\"100px;\" alt=\"Rex Omiv\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eRex Omiv\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/just1and0/React-Native-Paystack-WebView/issues?q=author%3Aomivrex\" title=\"Bug reports\"\u003e🐛\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://github.com/ossyfizy1\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/18512476?v=4?s=100\" width=\"100px;\" alt=\"Osagie Osaigbovo Charles\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eOsagie Osaigbovo Charles\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/just1and0/React-Native-Paystack-WebView/issues?q=author%3Aossyfizy1\" title=\"Bug reports\"\u003e🐛\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://github.com/Ujjalcha1\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/40722840?v=4?s=100\" width=\"100px;\" alt=\"Ujjalcha1\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eUjjalcha1\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/just1and0/React-Native-Paystack-WebView/issues?q=author%3AUjjalcha1\" title=\"Bug reports\"\u003e🐛\u003c/a\u003e\u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"http://codexplorer.me\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/23406970?v=4?s=100\" width=\"100px;\" alt=\"Oyefeso Oluwatunmise\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eOyefeso Oluwatunmise\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/just1and0/React-Native-Paystack-WebView/issues?q=author%3ABlac-Panda\" title=\"Bug reports\"\u003e🐛\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"http://fuadolatunji.me\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/65264054?v=4?s=100\" width=\"100px;\" alt=\"Fuad Olatunji\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eFuad Olatunji\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/just1and0/React-Native-Paystack-WebView/commits?author=fuadop\" title=\"Documentation\"\u003e📖\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://erasmuswill.dev\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/15966713?v=4?s=100\" width=\"100px;\" alt=\"Wilhelm Erasmus\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eWilhelm Erasmus\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/just1and0/React-Native-Paystack-WebView/commits?author=erasmuswill\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://github.com/opmat\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/2133903?v=4?s=100\" width=\"100px;\" alt=\"Matiluko Opeyemi Emmanuel\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eMatiluko Opeyemi Emmanuel\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/just1and0/React-Native-Paystack-WebView/commits?author=opmat\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://mureyfolio.com.ng/\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/47125673?v=4?s=100\" width=\"100px;\" alt=\"Oluwamurewa Alao\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eOluwamurewa Alao\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/just1and0/React-Native-Paystack-WebView/commits?author=mureyvenom\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n    \u003c/tr\u003e\n  \u003c/tbody\u003e\n\u003c/table\u003e\n\n\u003c!-- markdownlint-restore --\u003e\n\u003c!-- prettier-ignore-end --\u003e\n\n\u003c!-- ALL-CONTRIBUTORS-LIST:END --\u003e\n\nThis project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!\n\n\n# Roadmap\nwe have a lot to get done before we hit stable, here's a list;\n- Make the reference usage more user friendly\n- Since you want it to conform to InlineJS, let the variable names also match\n- Let the parameter types also conform to InlineJS parameter types\n- Paystack is a word, hence when used as a package name/class name, let it use PascalCase (Paystack) and when used as a variable, camelCase (paystack)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjust1and0%2Freact-native-paystack-webview","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjust1and0%2Freact-native-paystack-webview","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjust1and0%2Freact-native-paystack-webview/lists"}