For further actions, you may consider blocking this person and/or reporting abuse
Read next

Getting Started with React Native: From Effort to Ease 🚀
Naman Aggarwal -

How to launch a React Native app from the Lock Screen on iPhone
irinaivanovaalex -

property is not configurable This error is located at: in VirtualizedList (created by FlatList)
Manzoor Sofi -

Run Storybook with NX Expo and React Native Paper
Mirco Kraenz -
Top comments (1)
const { config, fs } = RNFetchBlob;
let PictureDir = fs.dirs.PictureDir; // this is the pictures directory. You can check the available directories in the wiki.
let options = {
fileCache: true,
addAndroidDownloads: {
useDownloadManager: true, // setting it to true will use the device's native download manager and will be shown in the notification bar.
notification: true,
path: PictureDir + '/Testing.pdf', // this is the path where your downloaded file will live in
description: 'Downloading image.'
}
};
config(options).fetch('GET', 'africau.edu/images/default/sample.... => {
console.warn(res);
alert('HIIII');
});
I tried this and its working with URL; But how to deal with base64 string?