gpt4 book ai didi

react-native - 如何在 native react 中打开半模态?

转载 作者:行者123 更新时间:2023-12-03 23:27:13 24 4
gpt4 key购买 nike

我正在创建一个 react native 应用程序,我使用了 react-native 模态组件来打开一个模态,我可以使用以下代码打开一个完整的模态。我在下面提到了我的代码示例。现在我想打开一个半模态。

这是我尝试过的。

import React from 'react';
import {
StyleSheet,
Text,
View,
ScrollView,
TouchableOpacity,
TextInput,
Image,
Modal,
} from 'react-native';

export default class Test extends React.Component {
constructor(props) {
super(props);
this.state = {
modalVisible: false,
};
}
setModalVisible(visible) {
this.setState({modalVisible: visible});
}

render() {
return (
<View style={styles.container}>
<View style={styles.header}>
<Text style={styles.headerText}>Test Half Modal</Text>
<TouchableOpacity
style={styles.addButton}
onPress={() => {
this.setModalVisible(true);
}}>
<Text style={styles.addButtonText}>Open</Text>
</TouchableOpacity>
</View>

<Modal
animationType="slide"
transparent={false}
visible={this.state.modalVisible}
onRequestClose={() => {
// this.closeButtonFunction()
}}>
<View style={styles.footer}>
<Text style={styles.headerText}>This is Half Modal</Text>
</View>
<TouchableOpacity
style={styles.addButton}
onPress={() => {
this.setModalVisible(!this.state.modalVisible);
}}>
<Text style={styles.addButtonText}>Close</Text>
</TouchableOpacity>
</Modal>
</View>
);
}
}

const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#98B3B7',
justifyContent: 'center',
},
header: {
flexDirection: 'row',
alignItems: 'center',
},
headerText: {
color: 'black',
fontSize: 18,
padding: 26,
},
noteHeader: {
backgroundColor: '#42f5aa',
alignItems: 'center',
justifyContent: 'center',
borderTopLeftRadius: 50,
borderTopRightRadius: 50,
},
footer: {
flex: 1,
backgroundColor: '#ddd',
bottom: 0,
left: 0,
right: 0,
zIndex: 10,
},
textInput: {
alignSelf: 'stretch',
color: 'black',
padding: 20,
backgroundColor: '#ddd',
borderTopWidth: 2,
borderTopColor: '#ddd',
},
},
addButton: {
position: 'absolute',
zIndex: 11,
right: 20,
bottom: 90,
backgroundColor: '#98B3B7',
width: 70,
height: 70,
borderRadius: 35,
alignItems: 'center',
justifyContent: 'center',
elevation: 8,
},
addButtonText: {
color: '#fff',
fontSize: 18,
},
});

使用上面的代码,我可以打开一个完整的模式。如何使用某些样式或其他样式打开半模态?

最佳答案

您将需要一个 Modal 内容的包装 View ,并且由于您计划只显示一半的屏幕,因此您必须使其透明。更新模态代码,如下所示。我将背景颜色设置为蓝色,您可以根据需要进行更改。高度设置为 50% 为您想要的一半,并且 marginTop 设置为 auto 将其移动到屏幕的下半部分。

<Modal
animationType="slide"
transparent={true}
visible={this.state.modalVisible}
onRequestClose={() => {
// this.closeButtonFunction()
}}>
<View
style={{
height: '50%',
marginTop: 'auto',
backgroundColor:'blue'
}}>
<View style={styles.footer}>
<Text style={styles.headerText}>This is Half Modal</Text>
</View>
<TouchableOpacity
style={styles.addButton}
onPress={() => {
this.setModalVisible(!this.state.modalVisible);
}}>
<Text style={styles.addButtonText}>Close</Text>
</TouchableOpacity>
</View>
</Modal>

关于react-native - 如何在 native react 中打开半模态?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61954732/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com