Hi All , Hope you doing well.
"My scenario is that I worked on a Card layout. Within the Card layout, I have some text fields. Initially, the Card layout has a predefined color. My task is to change the color of the Card layout when any value is entered into the text field. Can anyone help me out?"
Discussion posts and replies are publicly visible
you can use if condition when u put any value in text field card style will be changed according to your condition.reference Code-> a!localVariables( local!data, a!cardLayout( contents: a!textField( label: "data", value: local!data, saveInto: local!data, ), style: if(isnull(local!data),"TRANSPARENT","ACCENT") ))