The true native bottom sheet experience for your React Native Apps. π©
- β‘ Powered by Fabric - Built on React Native's new architecture for maximum performance
- π Fully Native - Implemented in the native realm, zero JS hacks
- βΏ Accessible - Native accessibility and screen reader support out of the box
- π Flexible API - Use imperative methods or lifecycle events
- β¨οΈ Keyboard Handling - Built-in keyboard handling with automatic adjustment
- π Side Sheets - Native side sheet support for iPad and Android tablets
- πͺ Liquid Glass - iOS 26+ Liquid Glass support out of the box, featured in Expo Blog
- π Reanimated - First-class support for react-native-reanimated
- π§ React Navigation - Built-in sheet navigator for seamless navigation integration
- π Web Support - Full web support out of the box
Tip
β¨ v4 is in beta! It rewrites the layout engine β the sheet now lays out synchronously per detent, so the container is sized to the sheet's visible height and tracks it in realtime while dragging.
- π Synchronous layout - Content resizes in the same frame as the sheet, no more lag
- π
autodetent with scrollables - The sheet now sizes itself to aScrollView/FlatList's content height - π
scrollableRef- Pass aScrollView/FlatListref to wire nested scrolling, keyboard insets, andautodetent sizing - π¦Ά Relative footers - Footers take up space below the content by default
- π§ Expo Router - First-class support via the
Sheetlayout from/navigation/expo-router
npx expo install @lodev09/react-native-true-sheet@betaSee the Migration Guide to upgrade. v3 is still supported for React Native 0.81+ and remains the latest release on npm.
Important
Version 3.0+ requires React Native's New Architecture (Fabric) For the old architecture, use version 2.x. See the Migration Guide for upgrading.
- React Native 0.82+ (0.81+ on v3)
- New Architecture enabled
- Xcode 26.1+
| TrueSheet | React Native | Expo SDK |
|---|---|---|
| 4.0+ | 0.82+ | 55+ |
| 3.7 - 3.11 | 0.81+ | 54+ |
| 3.6 | 0.80 | 52-53 |
npx expo install @lodev09/react-native-true-sheetyarn add @lodev09/react-native-true-sheet
cd ios && pod installThese install v3. For v4, append @beta β see π What's New in v4.
- Example
- Configuration
- Lifecycle Events
- React Navigation
- Troubleshooting
- Testing with Jest
- Migrating to v3
import { TrueSheet } from "@lodev09/react-native-true-sheet"
export const App = () => {
const sheet = useRef<TrueSheet>(null)
// Present the sheet β
const present = async () => {
await sheet.current?.present()
console.log('horray! sheet has been presented π©')
}
// Dismiss the sheet β
const dismiss = async () => {
await sheet.current?.dismiss()
console.log('Bye bye π')
}
return (
<View>
<Button onPress={present} title="Present" />
<TrueSheet
ref={sheet}
detents={['auto', 1]}
>
<Button onPress={dismiss} title="Dismiss" />
</TrueSheet>
</View>
)
}Skills are reusable AI capabilities that give your AI coding agent knowledge about TrueSheet. With the right skill loaded, your agent can pick the right patterns, avoid common mistakes, and generate correct code without you having to explain the library every time.
npx skills add lodev09/react-native-true-sheetThis will install the TrueSheet Usage skill into your project.
Yes it is! Checkout @lugg/maps, a universal maps library for React Native that I'm developing at Lugg.
See the contributing guide to learn how to contribute to the repository and the development workflow.
Made with β€οΈ by @lodev09



