您可以使用自定义库,例如react-native-modalbox。
您将可以根据需要设置样式的样式:
<Modal style={{background: 'red'}} ref={"modal1"}> <Text style={{color: 'white'}}>Basic modal</Text> <Button onPress={this.toggleSwipeToClose} style={styles.btn}>Disable swipeToClose({this.state.swipeToClose ? "true" : "false"})</Button> </Modal>您可以使用打开模态
openModal1(id) { this.refs.modal1.open(); }查看示例以查看更多选项。
奖励 :如果您想为react-native找到一个好的库,请尝试js.coach



