In Flutter show image form gallery or from network in same view

993 Views Asked by At

I am selecting on image from gallery then uploading it on server, after that on successful upload i am hitting one API to retrieve same image from server and want to show that image in the same ImageView I am using Image.file To load clicked image and Image.network To show Network image but i want One single thing to load image

1

There are 1 best solutions below

3
On

Try this, just set an boolen isProfileImageIsURL, if it is true show NetworkImage widget else FileImage

isProfileImageIsURL ? NetworkImage(profileImageURL) : FileImage(_profilePictureFile);