Scrollview切断了平铺列表的底部

时间:2019-06-18 22:16:08

标签: javascript css reactjs react-native scrollview

我的React项目中有一个滚动视图,该视图应该列出数据映射。这些磁贴还可以打开手风琴样式,以显示更多信息。应该映射并查看九个项目,但是滚动视图仅显示7,最后一个被切除/手风琴和瓷砖本身。

尝试:使用flex:1在其周围创建视图,使用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,
      }

1 个答案:

答案 0 :(得分:0)

我有类似的问题,我找到了一个解决方案,方法是在滚动视图的底部添加一个具有一定高度的额外视图:

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

希望它对您有帮助