react-native-deck-swiper
react-native-deck-swiper copied to clipboard
Have Swiper take full screen
Is there any way to fix the size of the swiper to take up the full screen?
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}
not working