Skip to content

Instantly share code, notes, and snippets.

@Grohden
Grohden / AutoHeightRBSheet.tsx
Last active January 9, 2023 09:56
React native raw bottom sheet with auto height calcs
// This is basically a copy of
// https://github.com/nysamnang/react-native-raw-bottom-sheet
// but using only translate animations instead of height
import React, {
forwardRef, ReactNode,
RefForwardingComponent,
useImperativeHandle,
useState
} from 'react'