According to the Modal documentation, there is no style
prop.
Instead of <Modal>
you can adjust the dimensions of <View>
:
<Modal transparent={true} visible={this.state.isVisible} onRequestClose={this.closeModal}> <View style={{ flex: 1, flexDirection: 'column', justifyContent: 'center', alignItems: 'center'}}> <View style={{ width: 300, height: 300}}> ... </View> </View> </Modal>
source share