make reactnative asccept any type of image code example

Example 1: render image url in react native

import React, { Component } from 'react';
import {
 AppRegistry, Image
} from 'react-native';

export default class Myproject extends Component {
 render() {

 let Image_Http_URL ={ uri: 'https://reactnativecode.com/wp-content/uploads/2017/05/react_thumb_install.png'};

 return (
 <Image source={Image_Http_URL} style = {{height: 200, resizeMode : 'stretch', margin: 5 }} />
 );
 }
}

AppRegistry.registerComponent('Myproject', () => Myproject);

Example 2: react native image file path variable

// Need to have all variable files already set with require 

const images = {
    profile: {
        profile: require('./profile/profile.png'),
        comments: require('./profile/comments.png'),
    },
    image1: require('./image1.jpg'),
    image2: require('./image2.jpg'),
};

return (
	<View>
  {
  	props.profile ? <Image source={images.profile.profile} /> : <Image source={images.profile.comments} />
  }
  </View>
)