How to Implement User Profile Picture in a React Native App

Hi Guys,

What have you found to be a good strategy for implementing user profile picture?
I have a react native app with an AccountScreen showing the current user details. I have implement using imagePicker to select an image from the user’s phone library. I have also been able to use a PUT request to add the image to the user’s details in my Mongodb.

My problem is how to implement changing the picture.

I’ll like to know if my current implementation is efficient or if there’s a better way. Is there a way to keep the selected image on the user’s storage device and have the app select from there? If so, is it an effective implementation?