this is React native module for image uploading to Cloudinary
This is react native module of Image uploading to Cloudinary
You can simply using this
step 1 : import RNCloudinary from 'react-native-cloudinary-x'
step 2 : RNCloudinary.init(API_KEY,API_SECRET, CLOUD_NAME)
step 3 : RNCloudinary.UploadImage(uri)
this will return response primise
this is example code
``
import RNCloudinary from 'react-native-cloudinary-x'
RNCloudinary.init(API_KEY,API_SECRET, CLOUD_NAME)
RNCloudinary.UploadImage(uri).then((res) => {
}
.catch(err => {
}
)
``