Earlier i did this for inputs, but i can’t do it for “when i tap…” and i don’t know what kind of formula can help in this situation instead of “IS_EMPTY”…
Hi, your formula tries to change the theme variable that affects all components, not the individual component’s style. Just use {borderColor: "#e6e6e6"} instead of {theme.$...}, that will affect just the component that you’re clicking.
Hi, you can change any CSS property of an element with {cssProperty: value}, for example if you want to change the color of a paragraph to blue you can do it with {color: 'blue'}. You can find a list of CSS properties here, just remember to write them in camelCase so for example font-size in CSS is fontSize in Composer.