Answers for "react native eimage uri"

0

react native eimage uri

these are two example for feact image from local and internet 	

<Image
        style={styles.tinyLogo}
        source={require('@expo/snack-static/react-native-logo.png')}
      />
                
                
      <Image
        style={styles.tinyLogo}
        source={{
          uri: 'https://reactnative.dev/img/tiny_logo.png',
        }}
      />
Posted by: Guest on June-29-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language