react-native-reanimated-bottom-sheet
react-native-reanimated-bottom-sheet copied to clipboard
Border radius does not work when enabledInnerScrolling is set to false
This is how I am using the bottom sheet
<BottomSheet ref={sheetRef} snapPoints={[400, 0, 0]} borderRadius={10} renderContent={renderContent} initialSnap={2} enabledInnerScrolling={false} />
When I remove the enabledInnerScrolling prop , I can see the borderRadius but when its value is set to false, the borderRadius vanishes.
im having similar issues