Skip to main content
Version: 1.x

Getting Started

Installation

  • Go to the project folder in terminal and run the following code:
yarn add @tra-tech/react-native-kitra
  • Packages you need to download separately to use:

react-native-reanimated

yarn add react-native-reanimated

Click for react-native-reanimated installation instructions.

react-native-gesture-handler

yarn add react-native-gesture-handler

Click for react-native-gesture-handler installation instructions.

react-native-vector-icons

yarn add react-native-vector-icons

Click for react-native-vector-icons installation instructions.

react-native-pager-view

yarn add react-native-pager-view

Click for react-native-pager-view installation instructions.

Implementation

Wrap your root component in KitraProvider from react-native-kitra.

import { KitraProvider } from '@tra-tech/react-native-kitra';
import App from './src/App';

export default function Main() {
return (
<KitraProvider>
<App />
</KitraProvider>
);
}