我正在使用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 }}
>..........................................
这里的问题是ImagePlaceholder
(npm)无法呈现。取而代之的是,图像在下载后会逐渐淡入Card
。我在这里做什么错了?