Hello,
I have the following gallery based on a Sharepoint List in my Power App that activates a Power Automate flow from a button:

Quite early in the flow I set the column ReleaseRequest to Yes in the Sharepoint List. I was hoping to update the button behaviour based on column:
Text property of button:
If(ThisItem.ReleaseRequest = "Yes", "Requested", "Request")
DisplayMode property:
If(ThisItem.ReleaseRequest = "Yes", DisplayMode.Disabled, DisplayMode.Edit)
I try to refresh my DataSource after 5 seconds after running the Power automate Workflow in hopes that the gallery will refresh real time and the button will update. The OnSelect of the Request button has:
OtherUser_Cancellation_DNG_PowerApp.Run(requestedOtherDocRef, User().Email);
Set(varStartTimer, true);
And the invisible timer element has OnTimerEnd after being Started with the varStartTimer set to true:
Set(varStartTimer, false);
Refresh('Authorization Matrix');
However the gallery still does not refresh real time. Is there any other way to achieve this?