In ios response.uri won’t work for file uploads. Modify it as below

(Platform.OS==='android') ? response.uri : response.uri.replace('file://', '')
and in options
storageOptions: { skipBackup: true, path: 'images', cameraRoll: true, waitUntilSaved: true }

source