--- title: Use Native Modals Over JS-Based Bottom Sheets impact: HIGH impactDescription: native performance, gestures, accessibility tags: modals, bottom-sheet, native, react-navigation --- ## Use Native Modals Over JS-Based Bottom Sheets Use native `` with `presentationStyle="formSheet"` or React Navigation v7's native form sheet instead of JS-based bottom sheet libraries. Native modals have built-in gestures, accessibility, and better performance. Rely on native UI for low-level primitives. **Incorrect (JS-based bottom sheet):** ```tsx import BottomSheet from 'custom-js-bottom-sheet' function MyScreen() { const sheetRef = useRef(null) return (