### Install expo-file-system package Source: https://docs.expo.dev/llms-sdk.txt Command to install the expo-file-system library into an existing project. ```bash npx expo install expo-file-system ``` -------------------------------- ### Install react-native-keyboard-controller Source: https://docs.expo.dev/llms-sdk.txt Command to install the react-native-keyboard-controller package using the Expo CLI. ```bash npx expo install react-native-keyboard-controller ``` -------------------------------- ### Install Expo Server Source: https://docs.expo.dev/llms-sdk.txt Command to install the expo-server package into an existing Expo project. ```shell npx expo install expo-server ``` -------------------------------- ### Install expo-clipboard package Source: https://docs.expo.dev/llms-sdk.txt Command to install the expo-clipboard library into an existing Expo or React Native project. ```bash npx expo install expo-clipboard ``` -------------------------------- ### Install Expo Camera Source: https://docs.expo.dev/llms-sdk.txt Command to install the expo-camera package using the Expo CLI. ```bash npx expo install expo-camera ``` -------------------------------- ### Install react-native-webview Source: https://docs.expo.dev/llms-sdk.txt Command to install the react-native-webview library into an Expo project using the expo CLI. ```shell npx expo install react-native-webview ``` -------------------------------- ### Install expo-system-ui Source: https://docs.expo.dev/llms-sdk.txt Command to install the expo-system-ui package into an existing Expo or React Native project. ```shell npx expo install expo-system-ui ``` -------------------------------- ### Install Expo Checkbox Source: https://docs.expo.dev/llms-sdk.txt Command to install the expo-checkbox package into an existing Expo project. ```bash npx expo install expo-checkbox ``` -------------------------------- ### Install expo-image-picker Source: https://docs.expo.dev/llms-sdk.txt Command to install the expo-image-picker package into an Expo project. ```shell npx expo install expo-image-picker ``` -------------------------------- ### Install expo-blur package Source: https://docs.expo.dev/llms-sdk.txt Command to install the expo-blur package using the Expo CLI. ```sh npx expo install expo-blur ``` -------------------------------- ### Install Expo Speech Source: https://docs.expo.dev/llms-sdk.txt Command to install the expo-speech package into an existing Expo project. ```bash npx expo install expo-speech ``` -------------------------------- ### Install Expo package Source: https://docs.expo.dev/llms-sdk.txt Command to install the core Expo package into your project using the Expo CLI. ```shell npx expo install expo ``` -------------------------------- ### Install Expo Packages Source: https://docs.expo.dev/llms-sdk.txt Commands to install the expo-dev-menu or expo-dev-client libraries into an existing Expo or React Native project. ```shell npx expo install expo-dev-menu ``` ```shell npx expo install expo-dev-client ``` ```shell npx expo install expo-device ``` -------------------------------- ### Install Expo DocumentPicker Source: https://docs.expo.dev/llms-sdk.txt Command to install the expo-document-picker package into an Expo project using the npx expo CLI. ```shell npx expo install expo-document-picker ``` -------------------------------- ### Install Expo Linking Source: https://docs.expo.dev/llms-sdk.txt Command to install the expo-linking package into an existing Expo or React Native project. ```bash npx expo install expo-linking ``` -------------------------------- ### Install Expo Libraries via CLI Source: https://docs.expo.dev/llms-sdk.txt Standard command to install Expo-compatible libraries into a project using the Expo CLI. ```shell npx expo install react-native-screens ``` ```shell npx expo install expo-secure-store ``` -------------------------------- ### Install Expo TaskManager Source: https://docs.expo.dev/llms-sdk.txt Command to install the expo-task-manager package into an existing Expo or React Native project. ```bash npx expo install expo-task-manager ``` -------------------------------- ### Install SASS support Source: https://docs.expo.dev/llms-sdk.txt Install the necessary SASS package to enable SCSS/SASS support in an Expo project. ```bash yarn add -D sass ``` -------------------------------- ### Install expo-constants package Source: https://docs.expo.dev/llms-sdk.txt Command to install the expo-constants library into an existing Expo or React Native project. ```shell npx expo install expo-constants ``` -------------------------------- ### Install react-native-safe-area-context Source: https://docs.expo.dev/llms-sdk.txt Command to install the safe area context library into an Expo project using the Expo CLI. ```bash npx expo install react-native-safe-area-context ``` -------------------------------- ### Install Expo Manifests Library Source: https://docs.expo.dev/llms-sdk.txt Command to install the expo-manifests package into an existing Expo or React Native project. ```shell npx expo install expo-manifests ``` -------------------------------- ### Expo Secure Store Usage Example (React Native) Source: https://docs.expo.dev/llms-sdk.txt This React Native code demonstrates how to use `expo-secure-store` to save and retrieve key-value pairs. It includes functions for saving items (`save`) and getting items (`getValueFor`), along with UI components (TextInput, Button) for user interaction. Ensure `expo-secure-store` is installed in your project. ```jsx import { useState } from 'react'; import { Text, View, StyleSheet, TextInput, Button } from 'react-native'; import * as SecureStore from 'expo-secure-store'; async function save(key, value) { await SecureStore.setItemAsync(key, value); } async function getValueFor(key) { let result = await SecureStore.getItemAsync(key); if (result) { alert("\uD83D\uDD10 Here's your value \uD83D\uDD10 \n" + result); } else { alert('No values stored under that key.'); } } export default function App() { const [key, onChangeKey] = useState('Your key here'); const [value, onChangeValue] = useState('Your value here'); return ( Save an item, and grab it later! {Add some TextInput components... }