gpt4 book ai didi

javascript - ScrollView 切断平铺列表的底部

转载 作者:行者123 更新时间:2023-11-27 23:48:33 25 4
gpt4 key购买 nike

我的 React 元素中有一个 ScrollView ,它应该列出数据映射。这些磁贴还打开 Accordion 样式以显示更多信息。应映射和查看九个元素,但 ScrollView 仅显示 7 个,最后一个被切断/ Accordion 和磁贴本身。

尝试:使用 flex: 1 在其周围创建一个 View ,使用 FlexGrow 而不是 flex,添加高度:100。

<ScrollView style={styles.contentContainer}>
<View style={styles.accordianContainer}>
<Accordion
sections={this.props.gyms}
activeSections={this.state.activeSections}
renderHeader={this._renderHeader}
renderContent={this._renderContent}
onChange={this._updateSections}
underlayColor={"#ffffff"}
/>
</View>
</ScrollView>


const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
},
contentContainer: {
flex: 1,
borderColor: 'red',
borderWidth: 1,
},
accordianContainer: {
height: ( Layout.noStatusBarHeight)* .9,
width: Layout.window.width,
marginBottom: Layout.window.height / 4,
}

最佳答案

我有类似的问题,我通过在 ScrollView 底部添加一个具有一定高度的额外 View 找到了解决方案:

<View style={{height: 54}} />

希望对您有所帮助

关于javascript - ScrollView 切断平铺列表的底部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56657740/

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