alexbrillant / react-native-deck-swiper

tinder like react-native deck swiper
ISC License
1.56k stars 465 forks source link

Have Swiper take full screen #283

Open packerfan626 opened 4 years ago

packerfan626 commented 4 years ago

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

BJSam commented 3 years ago

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}
AbGhost-cyber commented 3 years ago

not working