如何设置反应本机叠加部分的固定高度?

时间:2019-05-14 12:07:20

标签: javascript react-native bottom-sheet

我正在使用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',   }

});

0 个答案:

没有答案