Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.getpara.com/llms.txt

Use this file to discover all available pages before exploring further.

The useParaStatus hook returns the current initialization status of the Para client. Use it to delay rendering until the SDK is ready.

Import

import { useParaStatus } from "@getpara/react-native-wallet";

Usage

import { useParaStatus } from "@getpara/react-native-wallet";
import { View, Text, ActivityIndicator } from "react-native";

function AppShell() {
  const status = useParaStatus();

  if (!status.isReady) {
    return (
      <View>
        <ActivityIndicator />
        <Text>Initializing...</Text>
      </View>
    );
  }

  return <App />;
}