Created
June 19, 2018 03:03
-
-
Save alexpaul/b226fa0b030ecaf67978fd5b9d1f0ae1 to your computer and use it in GitHub Desktop.
Placeholder image in preparation for asynchronous image loading in react-native
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <Image | |
| source={ | |
| this.state.isLoaded | |
| ? | |
| {uri:this.state.imageURL} | |
| : | |
| require('../assets/placeholder-image.png') | |
| } | |
| style={styles.detailImage} | |
| /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment