Is your AnimatedComponent Animated.Image? I had the same error, and I realized that the problem was how I imported the image.
Error
in./assets/index.js:
import profilePlaceholder from './profilePlaceholder.png';
export { profilePlaceholder, ...(other images) }
in component:
import { profilePlaceholder } from '../../../assets/images';
(...)
<Animated.Image
style={imageStyle}
source={profilePlaceholder}
resizeMode='cover'
/>
works fine
in./assets/index.js:
// ...
// import profilePlaceholder from './profilePlaceholder.png';
// ...
// export { profilePlaceholder, ...(other images) }
in component:
import profilePlaceholder from '../../../assets/images//profilePlaceholder.png'; <-- changed this
(...)
<Animated.Image
style={imageStyle}
source={profilePlaceholder}
resizeMode='cover'
/>
Hope this helps.
source
share