Hi,
I am trying to get a response from a Power Automate flow to PowerApps.
I have a label in PowerApps that should appear once the flow has successfully run.
I’ve set the Visible property of the label to variable varLabelVisible. The variable value should be set to true by the workflow, once successfully run, therefore making the label visible.
A button triggers the flow. Its OnSelect property is set to:
Set(varLabelVisible,Flow.Run(…))
The flow runs successfully, giving the following output for the Respond to a PowerApp or flow action:
{
"varLabelVisibleValue": "True"
}
however, it doesn't seem to trigger the desired action in PowerApps, as the label does not appear at the end of the flow run.
I suspect I might have grossly misunderstood how the Respond to a PowerApp or flow action is supposed to work and what is the correct syntax to be used in PowerApps to retrieve the value from the flow.
Thank you for your help!