For further actions, you may consider blocking this person and/or reporting abuse
For further actions, you may consider blocking this person and/or reporting abuse
Ajmal Hasan -
ihtesham510 -
Tasha -
Dev Doido -
Once suspended, avinash03031991 will not be able to comment or publish posts until their suspension is removed.
Once unsuspended, avinash03031991 will be able to comment and publish posts again.
Once unpublished, all posts by avinash03031991 will become hidden and only accessible to themselves.
If avinash03031991 is not suspended, they can still re-publish their posts from their dashboard.
Once unpublished, this post will become invisible to the public and only accessible to avinash03031991.
They can still re-publish the post if they are not suspended.
Thanks for keeping DEV Community safe. Here is what you can do to flag avinash03031991:
Unflagging avinash03031991 will restore default visibility to their posts.
Latest 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?