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, apiSecret, entityId and authenticationToken.

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

Props NameTypeRequire Details

header

string

Optional

Component Header Text.

headerDescrption

string

Optional

Component Header Description Text.

referralLink

string

Require

referral link text

title

string

Optional

Title Text main view

description

string

Optional

Description Text Main View.

buttonText

string

Optional

Send Button Text.

Style Prop

Props NameTypeRequireDetails

mainViewStyle

ViewStyle

optional

Main View style

headerTextStyle

TextStyle

optional

Header Text style

descriptionTextStyle

TextStyle

optional

description text style

codeViewStyle

ViewStyle

optional

Input box view style

codeTextStyle

TextStyle

optional

input box text style

inviteButtonViewStyle

ViewStyle

optional

button view style

buttonTextStyle

TextStyle

optional

button text style

headingText

TextStyle

optional

Outter heading text style

detailText

TextStyle

optional

outter detail text style

middalView

ViewStyle

optional

MIddal view style

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"  >
        
        <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