Skip to content

Instantly share code, notes, and snippets.

@muhozi
Created April 1, 2019 20:51
Show Gist options
  • Save muhozi/7e5c39d882c4868a2f613ab6a8e0610e to your computer and use it in GitHub Desktop.
Save muhozi/7e5c39d882c4868a2f613ab6a8e0610e to your computer and use it in GitHub Desktop.
Retrieve from AsyncStorage
componentDidMount() {
let images;
AsyncStorage.getItem('images')
.then(data => {
images = JSON.parse(data) || [];
this.setState({
images: images
});
})
.catch(error => {
console.log(error);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment