Closed haoynmail closed 1 month ago
This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days.
This issue was closed because it has been stalled for 5 days with no activity.
Bug
When executing snapToIndex (index), the customized backdrop does not respond
Environment info
Steps To Reproduce
Reproducible sample code
import React, { useCallback, useRef, useMemo } from "react"; import Animated, { Extrapolate, interpolate, useAnimatedStyle, } from "react-native-reanimated"; import { StyleSheet, View, Text, Button } from "react-native"; import BottomSheet, { BottomSheetView } from "@gorhom/bottom-sheet"; import {GestureHandlerRootView} from 'react-native-gesture-handler';
const CustomBackdrop = ({ animatedIndex,style }) => { // animated variables
};
export default function BackdropComponentExercise() { // hooks const sheetRef = useRef(null);
};
const styles = StyleSheet.create({ container: { flex: 1, paddingTop: 200, }, });