--- id: methods title: Methods description: Bottom Sheet methods. keywords: - bottomsheet - bottom-sheet - bottom sheet - react-native - react native - ios - android - sheet - modal - presentation modal - reanimated image: /img/bottom-sheet-preview.gif slug: /methods --- These methods are accessible using the bottom sheet reference or the hook `useBottomSheet` or `useBottomSheetModal`. ```tsx import React, { useRef } from 'react'; import { Button } from 'react-native'; import BottomSheet from '@gorhom/bottom-sheet'; const App = () => { const bottomSheetRef = useRef(null); const handleClosePress = () => bottomSheetRef.current.close() return ( <>