react-native-modals icon indicating copy to clipboard operation
react-native-modals copied to clipboard

how to remove padding of ModalContent?

Open codercatmomi opened this issue 4 years ago • 1 comments

how to remove padding of ModalContent?

codercatmomi avatar Aug 24 '21 11:08 codercatmomi

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
    },
}

alexcbluk avatar Sep 28 '21 12:09 alexcbluk