Hi
In my power apps application I created upload images (user profile) and I saved the image in SharePoint document. It is done by flow.
and also I give permission to edit the image also. For edit image , The actual image is replaced by new image and image name is same. And I placed an image control for displaying the image(link added). But after the edit the image control is not updating..
After refresh the all application image is displaying correctly. But its not changing the time of updating.. Image control showing the old image..
I need to reload the image when image is changed
I am attaching my code details
my flow
My imagecotrol.image
If(!wait,
uplodedImage
)
my upload button
Set(
wait,
true
);
Set(
uplodedImage,
"https://*********/test/" & UserId & "/" &UserName & "_" & UserId
);
Set(
wait,
false
);
But My image control is not refreshing.
How can I achieve this ?