我正在使用react-native-overlay-section。底页可滑动到整个窗口,但我希望将其滑动到特定的高度。我应该怎么做?我已经上传了代码。
从'react'导入React,{组件}; 导入{ 视图, 文本, StyleSheet
}来自“ react-native”; 从“ react-native-overlay-section”导入SlideUp;
导出默认类App扩展组件{
constructor (props) {
super(props);
}
exampleContent = () => {
return (
<View >
<Text>This is test text</Text>
</View>
)
}
render() {
return (
<View style={{flex: 1}}>
<Text>Hello</Text>
<SlideUp
contentSection={this.exampleContent()}
draggableHeight={50}
/>
</View>
)
}
}
常量样式= StyleSheet.create({ 容器: { 弹性:1, justifyContent:“中心”, alignItems:'中心', backgroundColor:'#F5FCFF', }
});