image comonent in react native code example
Example 1: add image in react native
<Image
source={{ uri: 'app_icon' }}
style={{ width: 40, height: 40 }}
/>
Example 2: image react native
<Image
style={styles.tinyLogo}
source={require('@expo/snack-static/react-native-logo.png')}
/>