I have an image control in a test app, where the image is derived from a URL, e.g.
Image = ("https://s3-ap-southeast-2.amazonaws.com/api-dev-jupyter-notebook-s3/graph_sales.png")
I am working on a solution that allows that image to be updated (while retaining the same file name). Now in my mind, this should allow the image reference to either
a) automatically update
b) Be able to update via a button click or timer. I've tried a button that sets this image to the same URL again, and a timer where the timer end sets the image controls image property to the same URL again (after the image has been updated). Unfortunately, the image doesn't update. Not unless I quit out of the app and re-launch (or possibly navigate to a different screen and back again, I haven't tested that). Is this simply not possible in PowerApps, or am I missing something? There's no 'refresh' command for an image sadly.
If I can get this to work, then I have a way to dynamically generate some really interesting and cool graphs, and wanted to do a tutorial on it, but without this piece of the puzzle, it's essentially useless.