_reactNativeFetchBlob2.default.writeFile is not a function

480 Views Asked by At

TypeError: _reactNativeFetchBlob2.default.writeFile is not a function

import RNFetchBlob from 'react-native-fetch-blob';


RNFetchBlob.writeFile(path, data, 'utf8')
                .then((success) => {
                    console.log(success);
                })
                .catch((err) => {
                    console.log(err);
                });
1

There are 1 best solutions below

0
On

I think you're missing fs... RNFetchBlob.fs.writeFile.