SDK React-Native

Installation

npx expo install react-native-webview
npm install @kkiapay-org/react-native-sdk

Usage

  1. Import KKiaPay provider to access all context's features

// In your app file -- App
import { KkiapayProvider } from '@kkiapay-org/react-native-sdk';

import TestComponent from './TestComponent';

export default function App() {
  return (
    <KkiapayProvider>
      <TestComponent />
    </KkiapayProvider>
  );
}
  1. Use the useKkiapay hook and get all available functions

Last updated

Was this helpful?