在FlatList的末尾添加最后一个元素

时间:2019-01-22 21:16:02

标签: react-native react-native-flatlist

我正在努力实现以下目标,而除最后一个以外的所有图像都是来自数组的普通图像。

Images

当前,这是FlatList的代码:

<FlatList
  data={images}
  numColumns={3}
  // ListFooterComponent={
  // <View style={[StyleSheet.actionUploadedPictureFrame , {height: PIC_HEIGHT, width: PIC_WIDTH}]}>
  //     <Image source={require('../../../images/add-icon.png')} />
  // </View>}
  renderItem={ ({item, index}) => index == images.length -1 ?
     <View style={{flexDirection: 'row'}}>
       <Image style={[StyleSheet.actionUploadedPictureFrame , {height: PIC_HEIGHT, width: PIC_WIDTH}]} source={{uri: item.url}} /> 
       <View style={[StyleSheet.actionUploadedPictureFrame , {height: PIC_HEIGHT, width: PIC_WIDTH}]}>
         <Image source={require('../../../images/add-icon.png')} />
       </View>
     </View>
    : <Image style={[StyleSheet.actionUploadedPictureFrame , {height: PIC_HEIGHT, width: PIC_WIDTH}]} source={{uri: item.url}} /> }
  keyExtractor={(item, index) => index.toString()}
/>

长话短说,将数组中的图片渲染为3列的表格,并检查列表中的最后一张图片,除了渲染图片外,还将渲染此加号。

但是,如果列表中的元素数为3的倍数,则必然会出现某种错误,因为加号很可能不在屏幕上。 如果我使用ListFooterComponent,它将以全新的方式呈现它。

有人知道解决这个问题的有效方法吗?

2 个答案:

答案 0 :(得分:2)

由于我认为我不够清楚,因此我将尝试通过以下示例代码正确解释我的想法:

<FlatList
  data={[...images, { plusImage: true }]}
  numColumns={3}
  renderItem={({ item }) => {
    if (item.plusImage) {
      return (
        <View
          style={[
            StyleSheet.actionUploadedPictureFrame,
            { height: PIC_HEIGHT, width: PIC_WIDTH }
          ]}
        >
          <Image source={require("../../../images/add-icon.png")} />
        </View>
      );
    }
    return (
      <Image
        style={[
          StyleSheet.actionUploadedPictureFrame,
          { height: PIC_HEIGHT, width: PIC_WIDTH }
        ]}
        source={{ uri: item.url }}
      />
    );
  }}
  keyExtractor={(item, index) => index.toString()}
/>;

我不知道在data道具中像这样直接连接数据数组是否是最佳实践,但是您始终可以选择在render方法中更早地声明它。 让我知道这是否适合您的要求。

答案 1 :(得分:0)

我也遇到了同样的情况,并且在检查FlatList的文档时找到了一种好方法,因此,我建议的最佳方法是使用ListFooterComponent,您可以为此传递样式对象元素使用ListFooterComponentStyle Click here for more details

enter image description here