setObjectValue = async (value) => { try { const jsonValue = JSON.stringify(value) await AsyncStorage.setItem('key', jsonValue) } catch(e) { // save error } console.log('Done.') }