nysamnang / react-native-raw-bottom-sheet

Add Your Own Component To Bottom Sheet Whatever You Want (Android and iOS)
https://npmjs.com/package/react-native-raw-bottom-sheet
MIT License
1.08k stars 195 forks source link

how to disable draggableIcon ? #160

Closed furqan-hassan110 closed 8 months ago

furqan-hassan110 commented 1 year ago

<RBSheet ref={(ref: any) => { RBSheetRef.current = ref; }} animationType={'fade'} height={350} closeOnDragDown={true} closeOnPressMask={true} customStyles={{ wrapper: { backgroundColor: 'transparent', }, draggableIcon: { backgroundColor: Colors.buttonlogin, }, container: { borderTopLeftRadius: 10, borderTopRightRadius: 10, }, }}

eng-naveed commented 1 year ago

A quick hack draggableIcon: { display: 'none' },

Yasir12598 commented 1 year ago
customStyles={{
draggableIcon: {
  width:0,
  height:0,
  margin:0,
 },
}}