Hello,
I have 3 buttons in my power app,
When the first-time app is getting loaded at that time all three buttons are showing in black color.
I want to change and set the color of the buttons onStart event of the power apps.
I tried using the below code, but it didn't work.
Set(Matched_button_Fill, ColorValue("#0000FF"));
Set(UnMatched_Button_Fill,ColorValue("#FFFFFF"));
Set(All_Button_Fill,ColorValue("#FFFFFF"));
where - Matched_button_Fill, UnMatched_Button_Fill, All_Button_Fill in the above code, all these are variables I set on the Fill property of each button.
I am changing the color of the button OnStart event of the app, but it's still showing the button in the black.
Help is really appreciated!!!!