import { Image as ImageNative } from 'expo-image';
<ImageNative source={imageUri} placeholder={{ blurhash }} className="w-full h-48 rounded-lg mb-2" style={{ height:192,width:100% }} contentFit="cover" transition={200}/>
实际测试好像必须加 style 图片才会正确显示。那么如果有很多地方使用,每次加 style 不是很麻烦嘛? 我是想直接使用 className 来改变图片大小的。
1
Nyeshuai 1 天前 react-native 本就不支持 className ,nativewind 默认只转换了内置的,第三方不支持很正常,不光 Image 。你需要 interop 一下,cssInterop(Image, { className: 'style' });
|