1these are two example for feact image from local and internet
2
3<Image
4 style={styles.tinyLogo}
5 source={require('@expo/snack-static/react-native-logo.png')}
6 />
7
8
9 <Image
10 style={styles.tinyLogo}
11 source={{
12 uri: 'https://reactnative.dev/img/tiny_logo.png',
13 }}
14 />