我正在使用react native。在那个Image组件中没有srcset
。那么有没有办法在react native中使用srcset。或者我们可以创建自己的srcset?
类似于web或react:https://html.com/attributes/img-srcset/
还找到了这篇文章:https://medium.com/finimize-engineering/fetching-responsive-images-in-react-native-to-boost-performance-cd638cd0928e
1条答案
按热度按时间lb3vh1jj1#
响应本机,图像组件没有srcset属性。但是,您可以使用源属性实现类似的效果,该属性允许您为图像指定多个源,并让组件根据设备的屏幕密度选择最合适的源。
您还可以使用源 prop 为不同的设备大小或方向提供不同的图像,如下所示