Expo Native Components (beta)
The Clerk Expo SDK provides prebuilt native UI components rendered with SwiftUI on iOS and Jetpack Compose on Android. These components provide a fully native authentication experience for Expo apps.
<AuthView /> and <UserProfileView /> render inline in your React Native view hierarchy, so you can place them in a modal, route, full-screen view, or any other layout that fits your app. <UserButton /> renders the platform-native Clerk button and opens <UserProfileView /> when tapped.
Available components
Requirements
Native components require:
-
Expo SDK 53 or later. See the quickstart guide.
-
A development build (
npx expo run:iosornpx expo run:android), as these components are not available in Expo Go. -
The
@clerk/expoplugin configured in yourapp.jsonfile. See the available plugin options.app.json { "expo": { "plugins": ["@clerk/expo"] } } -
If using social connections, you must register your native application credentials in the Clerk Dashboard. See the Sign in with Google and Sign in with Apple guides for setup steps.
Expo plugin options
The plugin accepts the following options:
- Name
appleSignIn- Type
boolean- Description
Whether to add the
com.apple.developer.applesigninentitlement. Set tofalseif your app does not use Apple Sign In. Defaults totrue.
- Name
keychainService- Type
string- Description
Custom keychain service identifier. Required if you need extension targets (widgets, App Clips, Watch) to share the keychain with the main app.
- Name
theme- Type
string- Description
Path to a JSON file that customizes the appearance of the native components on iOS and Android (colors, dark mode, border radius, and font family). See the Theming reference for platform-specific details and the full schema.
{
"expo": {
"plugins": [
[
"@clerk/expo",
{
"appleSignIn": false,
"keychainService": "com.example.myapp"
}
]
]
}
}Respond to auth changes
Use hooks like useAuth(), useUser(), or useSession() to read authentication state and update your UI after auth changes.
The following example demonstrates one way to open <AuthView /> from a sign-in button.
import { AuthView } from '@clerk/expo/native'
import { useAuth, useUser } from '@clerk/expo'
import { useState } from 'react'
import { Button, Modal, Text, View } from 'react-native'
export default function HomeScreen() {
const { isSignedIn } = useAuth({ treatPendingAsSignedOut: false })
const { user } = useUser()
const [isAuthOpen, setIsAuthOpen] = useState(false)
return (
<View>
{isSignedIn ? (
<Text>User ID: {user?.id}</Text>
) : (
<Button title="Sign in" onPress={() => setIsAuthOpen(true)} />
)}
<Modal
animationType="slide"
visible={isAuthOpen}
presentationStyle="pageSheet"
onRequestClose={() => setIsAuthOpen(false)}
>
<AuthView onDismiss={() => setIsAuthOpen(false)} />
</Modal>
</View>
)
}When rendering <AuthView /> or <UserProfileView /> directly in a route or full-screen view, pass isDismissible={false} if users must complete the flow to continue.
<AuthView isDismissible={false} /><UserProfileView isDismissible={false} style={{ flex: 1 }} />Web compatibility
For Expo web projects, use the web-specific components from @clerk/expo/web:
import { SignIn } from '@clerk/expo/web'
export default function SignInScreen() {
return <SignIn />
}See the web component reference for more information.
Feedback
Last updated on