react-native-bottom-sheet icon indicating copy to clipboard operation
react-native-bottom-sheet copied to clipboard

border radius bottomsheet

Open Madeean opened this issue 11 months ago • 1 comments

is there a way to change the border radius in the bottomsheet?

Madeean avatar Jan 15 '25 03:01 Madeean

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>

dguaycha avatar Feb 22 '25 02:02 dguaycha