gpt4 book ai didi

react-native - react 原生的 Expo 应用程序的 WebP 格式

转载 作者:行者123 更新时间:2023-12-05 06:07:07 24 4
gpt4 key购买 nike

我们如何在不弹出的情况下在 Expo 项目中为 iOS 和 Android 启用 Webp 格式。

最佳答案

它适用于 expo Go。你可以查看:https://snack.expo.dev/6T9fiBmZL

也许你忘了添加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

关于react-native - react 原生的 Expo 应用程序的 WebP 格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65564811/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com