react native bottom sheet above the bottom menu
//you will need to use BottomSheetModal and add its provider to the root component of you application
import { BottomSheetModalProvider } from '@gorhom/bottom-sheet'
const App = () => {
  return (
    <BottomSheetModalProvider>
      <Navigation /> // this is my app entry component (react-navigation Navigator), use yours
    </BottomSheetModalProvider>
  )
