React Native Guideline: Animation — Use gesture handler. Description: Native gesture recognition. Do: react-native-gesture-handler. Don't: JS-based gesture handling. Good Example: <GestureDetector>. Bad Example: <View onTouchMove={} />. Severity: Medium. Docs: https://docs.swmansion.com/react-native-gesture-handler/.