Answers for "react native image source local file"

4

add image in react native

<Image
  source={{ uri: 'app_icon' }}
  style={{ width: 40, height: 40 }}
/>
Posted by: Guest on June-13-2020
0

react native image source local file

<Image source={require('./myimage.png')} />
Posted by: Guest on June-24-2021
0

react native preload local images

import { Image } from 'react-native';
import FastImage from 'react-native-fast-image';

export function preloadImages() {
  const images = [
    require('../assets/images/graphic1.webp'),
    require('../assets/images/graphic2.jpg'),
    require('../assets/images/graphic3.webp')
  ];

  const uris = images.map(image => ({
    uri: Image.resolveAssetSource(image).uri
  }));

  FastImage.preload(uris);
}
Posted by: Guest on December-22-2020

Code answers related to "react native image source local file"

Code answers related to "Javascript"

Browse Popular Code Answers by Language