Description
I am developing a website in React.js which has a bunch of image calls.
So it was mandatory to implement lazy loading of the images so that images present in the viewport will be only called on the initial loading of the website,
I am currently using https://www.npmjs.com/package/react-lazy-load-image-component to implement lazy loading.
It is working fine in desktop browsers(including safari), android browsers but the image is not loading at all in the iPhone safari browser even after the scrolling.
This is how i use the component in my JS file,
<LazyLoadImage alt="Select a hero" src="/images/someimage.png" />
And I also use LazyLoadComponent to lazy load a section in my page and the content that is given inside this component is also not showing up in safari,
<LazyLoadComponent> <WorkExplanation currentLanguage={this.props.currentLanguage} />
</LazyLoadComponent>
@Aljullu Can you please help me to solve this issue?