react-native ListView的属性flexWrap为wrap失效解决

前端之家收集整理的这篇文章主要介绍了react-native ListView的属性flexWrap为wrap失效解决前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

最近在参照某些例子学习React-native 开发iOSAndroid的app时,碰到如标题所示的问题:
ListView的属性flexWrap为wrap不起作用。
如下可以看到每一行的其实是有10个图标的,自动换行之后,第一页的下满三个不见了:

代码如下:
大家可以看:
flexDirection:'row',
flexWrap:'wrap',

采取了,横向,自动换行,效果是达到了了,可是,下面的换行后的图标确是不见了!!

  
  
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
import@H_403_257@ React,{ Component } from 'react'@H_403_257@; import@H_403_257@ { AppRegistry,StyleSheet,Text,View,Image,ListView } from 'react-native'@H_403_257@; import@H_403_257@ Dimensions from 'Dimensions'@H_403_257@; var@H_403_257@ {width,height} = Dimensions.get('window'@H_403_257@); export@H_403_257@ default@H_403_257@ class@H_403_257@ TopListView@H_403_257@ extends@H_403_257@ Component@H_403_257@{@H_403_257@ static defaultProps ={ dataArr : [] } constructor(props){ super@H_403_257@(props); var@H_403_257@ ds = new@H_403_257@ ListView.DataSource({rowHasChanged:(r1,r2)=>r1!==r2})@H_403_257@; this@H_403_257@.state@H_403_257@={ dataSource@H_403_257@:ds@H_403_257@.cloneWithRows@H_403_257@(this@H_403_257@.props.dataArr)@H_403_257@,} } render@H_403_257@()@H_403_257@ { return@H_403_257@ ( <ListView dataSource = {this@H_403_257@.state.dataSource} renderRow={this@H_403_257@.renderRow.bind(this@H_403_257@)} contentContainerStyle={styles.contentViewStyle} scrollEnabled={false@H_403_257@} /> )@H_403_257@ } renderRow@H_403_257@(rowData)@H_403_257@{ return@H_403_257@ ( <View style={styles.cellStyle}> <Image source={{uri:rowData.image}} style={{width:52@H_403_257@,height:52@H_403_257@}}/> <Text>{rowData.title}</Text> </View> )@H_403_257@; } } const@H_403_257@ styles@H_403_257@ = StyleSheet@H_403_257@.create@H_403_257@({ contentViewStyle:{ flexDirection:'row'@H_403_257@,flexWrap:'wrap'@H_403_257@,//@H_403_257@ 屏幕宽度 width:width,},cellStyle:{ } })@H_403_257@;@H_403_257@

踩坑之后的解决方法
解释原因:由于在rn 0.28之后的版本上官方已经修改flexWrap:'wrap'的工作方式了,之前版本的是flexWrap:'wrap'和默认的alignItems: 'stretch'是一起工作的;如果是0.28之后的版本,你需要加上alignItems: 'flex-start'
如下:

  
  
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
contentViewStyle@H_403_257@:{ flexDirection@H_403_257@:'row'@H_403_257@,alignItems:'flex-start'@H_403_257@,// 屏幕宽度 width:width,@H_403_257@@H_403_257@@H_403_257@},
原文链接:https://www.f2er.com/react/304721.html

猜你在找的React相关文章