I have created a tabbed screen using an MVP blog I found in Powerapps pages here: https://powerapps.microsoft.com/en-us/blog/design-tips-part-1-handling-tab-control-scenarios-in-powe...
I have created the tabs and it works but the example picture shows that the selected tab is a different colour to the other 2.
Can anyone help on how I would be able to get the Fill property of each Tab lable to change colour when it is selected?
Solved! Go to Solution.
Just click on that gallery where your tabs are and change TemplateFill to
If(ThisItem.IsSelected,Color.Red,Color.Aqua)
or use instead of Color RGBA which would looks like this
If(ThisItem.IsSelected,RGBA(100,100,100,1),RGBA(50,50,50,1))
Obviously you have to change the color to match your needs
Just click on that gallery where your tabs are and change TemplateFill to
If(ThisItem.IsSelected,Color.Red,Color.Aqua)
or use instead of Color RGBA which would looks like this
If(ThisItem.IsSelected,RGBA(100,100,100,1),RGBA(50,50,50,1))
Obviously you have to change the color to match your needs
Perfect! Thanks 🙂
User | Count |
---|---|
258 | |
110 | |
90 | |
52 | |
44 |