### Install Dependencies Source: https://github.com/descope/descope-react-native/blob/main/example-rn-latest/README.md Run this command to install project dependencies. ```bash yarn install ``` -------------------------------- ### Start Authentication Flow Source: https://github.com/descope/descope-react-native/blob/main/_autodocs/useFlow-deprecated.md Example of using the start method from the useFlow hook to initiate an authentication flow. It handles the response and manages the session. ```tsx import { useFlow, useSession } from '@descope/react-native-sdk' function LoginScreen() { const { start, exchange } = useFlow() const { manageSession } = useSession() const startAuthFlow = async () => { try { const resp = await start( 'https://auth.example.com/flows/login', 'https://myapp.example.com/auth', 'myapp://auth' ) if (resp.ok && resp.data) { await manageSession(resp.data) } else { console.error('Flow failed:', resp.error) } } catch (error) { console.error('Flow error:', error) } } return