How to display an image from local file? This code doesn't seem to work.
<Image
source={{
uri: 'file:///data/data/com/files/image.png',
}}
/>
How to display an image from local file? This code doesn't seem to work.
<Image
source={{
uri: 'file:///data/data/com/files/image.png',
}}
/>
<Image
source={{
uri: require('file:///data/data/com/files/image.png'),
}}
/>
For more details visit https://reactnative.dev/docs/images
<Image
source={{
uri: 'file:///data/data/com/files/image.png',
}}
/>
try simply
<Image
source={require('file:///data/data/com/files/image.png')}
/>