Answers for "powerapps highlight selected item in gallery"

0

powerapps highlight selected item in gallery

In TemplateFill Property of Gallery, use ThisItem.IsSelected to change the color.

If(
    ThisItem.IsSelected,
    White,
    LightGray
)
Posted by: Guest on December-02-2020

Code answers related to "powerapps highlight selected item in gallery"

Browse Popular Code Answers by Language