react-native-bottom-sheet
react-native-bottom-sheet copied to clipboard
border radius bottomsheet
is there a way to change the border radius in the bottomsheet?
Hi, this example is util for me
<BottomSheet
style={{
borderRadius: 0, // only on web
borderTopLeftRadius: 0, // ios
borderTopRightRadius: 0, // ios
}}
closeDuration={200}
openDuration={200}
animationType="slide"
closeOnOverlayPress
ref={sheetRef}
>
<Text>The smart 😎, tiny 📦, and flexible 🎗 bottom sheet your app craves 🚀</Text>
</BottomSheet>