--- id: methods title: Methods description: Bottom Sheet modal 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: /modal/methods --- **Bottom Sheet Modal** inherits all [**Bottom Sheet** methods](../methods) and also it introduces its own methods. These methods are accessible using the bottom sheet modal reference: ```tsx import React, { useRef } from 'react'; import {BottomSheetModal} from '@gorhom/bottom-sheet'; const App = () => { const bottomSheetModalRef = useRef(null); const handlePresentPress = () => bottomSheetModalRef.current.present() return ( <>