🚨 Shai-Hulud Strikes Again:834 Packages Compromised.Technical Analysis →
Socket
Book a DemoInstallSign in
Socket

expo-guided-access

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

expo-guided-access

An Expo Module to check if a device is in guided access mode.

next
latest
Source
npmnpm
Version
0.1.0
Version published
Maintainers
1
Created
Source

Expo Guided Access

An Expo Module to check if a device is in guided access mode.

[!IMPORTANT]
This package is not part of the Expo SDK. It will only work with development builds and not with Expo Go.

[!NOTE]
Currently only iOS is supported.

Installation

Installation in Expo Projects with Development Builds

npm install expo-guided-access

As the module uses custom native code, create a new development build after installation.

Installation in bare React Native Projects

For bare React Native projects, you must ensure that you have installed and configured the expo package before continuing.

Add the Package to your npm dependencies

npm install expo-guided-access

Configure for iOS

Run npx pod-install after installing the npm package.

Usage

For applied usage see the example app.

Get Status

const isGuidedAccessEnabled = await ExpoGuidedAccess.isGuidedAccessEnabled();

Watch

import * as ExpoGuidedAccess from 'expo-guided-access';
import { Subscription } from 'expo-modules-core';
import { useEffect, useState } from 'react';

// ...

const [guidedAccessEnabled, setGuidedAccessEnabled] = useState<boolean>();
const [subscription, setSubscription] = useState<Subscription>();

useEffect(() => {
  (async () => {
    const guidedAccessEnabled = await ExpoGuidedAccess.isGuidedAccessEnabled();
    setGuidedAccessEnabled(guidedAccessEnabled);

    setSubscription(
      ExpoGuidedAccess.addChangeListener(({ guidedAccessEnabled }) => {
        setGuidedAccessEnabled(guidedAccessEnabled);
      }),
    );
  })();

  return () => {
    subscription && subscription.remove();
    setSubscription(undefined);
  };
}, []);

Keywords

react-native

FAQs

Package last updated on 19 Sep 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts