卡未将imageProps传递到图像组件

时间:2019-09-06 08:27:28

标签: react-native

我正在使用Card中的react-native-elements组件,它说在文档中我可以将imageProps传递给image,而imageProps可以是Image中的react-native可以接受的任何东西。

所以,我有:

   <Card
      key={post._id}
      title={post.title}
      imageStyle={{
        height: 300
      }}
      imageProps={{
        ImageComponent: (
          <ImagePlaceholder
            src={post.image.location}
            placeholder={post.image.location}
            duration={1000}
            showActivityIndicator={true}
            activityIndicatorProps={{
              size: "large",
              color: index % 2 === 0 ? "blue" : "red"
            }}
          />
        )
      }}
      image={{ uri: post.image.location }}
    >..........................................

这里的问题是ImagePlaceholdernpm)无法呈现。取而代之的是,图像在下载后会逐渐淡入Card。我在这里做什么错了?

0 个答案:

没有答案