react-native-modals
react-native-modals copied to clipboard
how to remove padding of ModalContent?
how to remove padding of ModalContent?
I would add a style prop to the ModalContent like this:
<ModalContent style={styles.content}>
.....
</ModalContent>
And then use negative margin to offset the padding.
export default StyleSheet.create({
content: {
marginHorizontal: -20
marginVertical: -24
},
}