Share With friends

Components Visuals

To unlock early access to the component Get Access

Installation

To install the Quest react-native-sdk into your project, follow these steps:

  • Open your terminal/command prompt.

  • Navigate to your project's root directory using the cd command if you're not already there.

  • Run the following command to install the quest-sdk package using npm:

npm install @questlabs/react-native-sdk

This command will download and install the package and its dependencies into your project.

Make sure your project has npm and Node.js installed, and that you have the necessary permissions to install packages in your project directory.

Usage

Root Component

  • Import the QuestProvider Component: Import the QuestProvider component from the @questlabs/react-sdk package.

import { QuestProvider } from '@questlabs/react-sdk';
  • Pass the Required Props: Pass the required props to the QuestProvider. The required props are apiKey, entityId, authenticationToken and fontFamily.

To load external fonts, please refer this doc to setup expo-font on your expo app.

Component Usage

To integrate the useShareWithFriend component into your React native application, follow these steps.

  • Import useShareWithFriend Hook: Import the useShareWithFriend component from the @questlabs/react-sdk package.

  • Import the ShareWithFriend Component: Import the ShareWithFriend component from the @questlabs/react-sdk package.

  • Pass the Required Props: Pass the required props to the useShareWithFriend . The required props are questId, questUserId, and questToken or if user don't have quest User id then they can pass own userId to get questUserId and Token.

import { useShareWithFriend , ShareWithFriend } from "@questlabs/react-native-sdk";

Don't not use QuestProvider and useShareWithFriend Hook in same file

Props of ShareWithFriend Component

The ShareWithFriend component accepts the following props

Style Prop

Example Usage

App.js

import { SafeAreaView, StyleSheet, StatusBar } from "react-native";
import React, { useState } from "react";
import { QuestProvider } from "@questlabs/react-native-sdk";
import DemoComponent from "./DemoComponent";

export default function App() {
return (
    <SafeAreaView style={styles.container}>
      <StatusBar />
      <QuestProvider
        apiKey="Your-Api-Key"
        apiSecret="Your-Api-Secret"
        entityId="Your-Api-entityId"
        authenticationToken="Your-authentication-token"  
         fontFamily= "Your-Font-FamFamily"
        >
        
        <DemoComponent />
        
        </QuestProvider>
   
    </SafeAreaView>
  );
}

DemoComponent.tsx

import React from "react";
import { ShareWithFriend, useShareWithFriend } from "@questlabs/react-native-sdk";
const DemoComponent = () => {
  // const shareWithFriend = useShareWithFriend ({
  //   questId: "Your-Quest_ID" ,
  //   userId:"5235trfet365try67ywry5"
  //   })

  const shareWithFriend = useShareWithFriend ({
    questId: "Your-Quest_ID" ,
    questUserId: "Your-user-id",
    questToken: "Your-Token-id" 
    });
  return (
     <>
      <ShareWithFriend
        // referralLink="eaigfnikadhn"
        referralLink={shareWithFriend.referralLink}
        loading={shareWithFriend.loading}
        buttonText="atgdasg"
        description="knvakneihjtg"
        header="ksnmdgsdfg"
        headerDescrption="smdgbmsdfngb"
        title="alkdngnadopjng"
      />
    </>
  );
};
export default DemoComponent;

Demo

Last updated