This post is to show how to set the visible property dynamically
Set the Visible Property of the button to a Boolean variable as below
Feel free to point out if anything is wrong/missing in this post.
Tips on Microsoft Power Automate, Power Apps, Power Query, Dynamics CRM, Azure Logic Apps, Azure API Management, Azure Service Bus, Azure Key Vault
This post is to show how to set the visible property dynamically
Set the Visible Property of the button to a Boolean variable as below
This post is to show how to change the color of a Text / Label / Button etc.. dynamically
We can set the text color by specifying the color in the color attribute, if we want to set the color with a static value.
ex:-
In the below example, on the button click, I am setting the dynamic variable to the value from the text box
Set(labelColor,TextInput1.Text)
ColorValue(labelColor)
In my project, we had a requirement to call a REST API using OAuth Authentication from Azure LogicApps. We had configured APIM to do the ...