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

This Week In React #136: Next.js, Signals, Bling, Suspense, Server Components, useSyncExternalStore, Expo, Reanimated, Metro...
Sebastien Lorber -

This Week In React #137: Code Extraction, Server Components, Signals, Forget compiler, Next.js, Astro, Remix, TypeScript...
Sebastien Lorber -

React Native Navigation: useFocus to reload the screen every time back
Nguyễn Hữu Hiếu -

How to Use a Sass/SCSS with Expo SDK v48 and TypeScript
GihanRangana -
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?