我想在 react native modal 的帮助下制作一个通用对话框。我已经编写了如下代码:
<Modal isVisible={isModalVisible} style={styles.modalStyle} >
<Text>Hello World!</Text>
</Modal>
下面提到了样式:
const styles = StyleSheet.create({
modalStyle : {
top : '50%',
left : '50%',
right : 'auto',
bottom : 'auto',
marginRight : '-50%',
},
}
但是模态对话框占用了整个屏幕!
我还尝试将代码编辑为:
<Modal>
<View style={{ flex: 1, top: 50%, left: 50%, width: 70%, height : 50% }}>
<Text>Hello World!</Text>
</View>
</Modal>
删除模态中的样式。但结果还是一样!
幕布斯7119047
侃侃尔雅
斯蒂芬大帝
随时随地看视频慕课网APP
相关分类