1//Local import (relative path)
2<Image source={require("./assets/snack-icon.png")} />
3//External import (web path) you should specify the width and height
4<Image source={{uri:"https://picsum.photos/200", width:200,height:200 }}/>
1<Image
2 source={require("relative_path_to_image")}
3 style={{ width: 100, height: 100 }}
4/>
1// useing require is more secure
2<Image
3 source = {require('C:/Users/Tutorialspoint/Desktop/NativeReactSample/logo.png')}
4/>