bounty将在4天后过期。回答此问题可获得+50的声望奖励。Shamoon正在寻找来自知名来源的答案。
我们如何在Expo项目中为iOS和Android启用Webp格式而不弹出。
i2loujxw1#
它在expo Go上工作。你可以检查:https://snack.expo.dev/6T9fiBmZL也许你忘了加上heightwidth
height
width
import React from 'react' import { StyleSheet, View,Image } from 'react-native'; const App = () => { return ( <View style={styles.container}> <Image source={{uri:"https://www.gstatic.com/webp/gallery/1.sm.webp"}} style={{height:200,width:200}} /> </View> ); }; const styles = StyleSheet.create({ container: { flex:1, justifyContent:"center", alignItems:"center", }, }); export default App
1条答案
按热度按时间i2loujxw1#
它在expo Go上工作。你可以检查:https://snack.expo.dev/6T9fiBmZL
也许你忘了加上
height
width
代码