Skip to content

Instantly share code, notes, and snippets.

@jckw
Created August 8, 2019 13:23
Show Gist options
  • Save jckw/613f8917878849167504b0182098fd8d to your computer and use it in GitHub Desktop.
Save jckw/613f8917878849167504b0182098fd8d to your computer and use it in GitHub Desktop.
import React from "react"
import { Image } from "react-native"
const sources = [
{
height: 16,
uri:
"https://finimize-img-test.imgix.net/https%3A%2F%2Fimages.unsplash.com%2Fphoto-1498671546682-94a232c26d17%3Fixlib%3Drb-1.2.1%26ixid%3DeyJhcHBfaWQiOjEyMDd9%26auto%3Dformat%26fit%3Dcrop%26w%3D987%26q%3D80?fit=crop&h=16&ixlib=python-3.0.0&w=16&s=60604503c09cf60a0a360046429a8fc0",
width: 16
},
{
height: 32,
uri:
"https://finimize-img-test.imgix.net/https%3A%2F%2Fimages.unsplash.com%2Fphoto-1498671546682-94a232c26d17%3Fixlib%3Drb-1.2.1%26ixid%3DeyJhcHBfaWQiOjEyMDd9%26auto%3Dformat%26fit%3Dcrop%26w%3D987%26q%3D80?fit=crop&h=32&ixlib=python-3.0.0&w=32&s=97f0a20308caa387ca7d9abbe00aec83",
width: 32
},
{
height: 64,
uri:
"https://finimize-img-test.imgix.net/https%3A%2F%2Fimages.unsplash.com%2Fphoto-1498671546682-94a232c26d17%3Fixlib%3Drb-1.2.1%26ixid%3DeyJhcHBfaWQiOjEyMDd9%26auto%3Dformat%26fit%3Dcrop%26w%3D987%26q%3D80?fit=crop&h=64&ixlib=python-3.0.0&w=64&s=fc988286ecc9428aa00614764612b6f1",
width: 64
},
{
height: 128,
uri:
"https://finimize-img-test.imgix.net/https%3A%2F%2Fimages.unsplash.com%2Fphoto-1498671546682-94a232c26d17%3Fixlib%3Drb-1.2.1%26ixid%3DeyJhcHBfaWQiOjEyMDd9%26auto%3Dformat%26fit%3Dcrop%26w%3D987%26q%3D80?fit=crop&h=128&ixlib=python-3.0.0&w=128&s=6d0be356eb6a6874f9e39d1a5c67a8dd",
width: 128
}
]
const SomeImage = () => {
return <Image source={sources} />
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment