react-native-deck-swiper icon indicating copy to clipboard operation
react-native-deck-swiper copied to clipboard

Have Swiper take full screen

Open packerfan626 opened this issue 5 years ago • 2 comments

Is there any way to fix the size of the swiper to take up the full screen?

packerfan626 avatar Jan 08 '20 23:01 packerfan626

make card width, height as device width, height using this

const windowWidth = Dimensions.get('window').width;
const windowHeight = Dimensions.get('window').height; 

and make cardHorizontalMargin and cardVerticalMargin to zero by adding Swiper props as

 cardHorizontalMargin={0}
  cardVerticalMargin={0}

BJSam avatar Jan 12 '21 11:01 BJSam

not working

AbGhost-cyber avatar May 19 '21 04:05 AbGhost-cyber