import React from 'react';
import { View, Image, StyleSheet } from 'react-native';
const MyImageExample = () => {
return (
<View style={styles.container}>
<Image
source={{ uri: 'https://example.com/image.jpg' }}
style={styles.image}
/>
</View>
);
};
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
},
image: {
width: 200,
height: 200,
borderRadius: 10,
},
});
export default MyImageExample;
在这个例子中,Image 组件的 source 属性用于指定要显示的图片。uri 属性可以是图片的网络地址(远程图片)或本地文件路径(本地图片)。在上述示例中,我们使用了一个远程图片的 URI。
重要属性:
- source: 用于指定要显示的图片。可以是对象,包含 uri、width 和 height 属性,也可以是一个表示本地资源的整数(例如 require('./path/to/image.jpg'))。
- style: 用于设置图片的样式,包括宽度、高度、边框半径等。
React Native 还提供了一些其他属性和方法,例如 resizeMode(用于调整图片的尺寸),onLoad(在图片加载完成时触发的回调),onError(在加载图片失败时触发的回调)等。
此外,React Native 中的图片组件支持缓存、加载指示器和图片预加载等功能,可以根据项目需求选择适当的配置。
请确保在实际项目中使用合适的图片资源,并注意处理好不同屏幕密度的图片。
转载请注明出处:http://www.zyzy.cn/article/detail/9463/React Native