Hi,
I have a label's .Text property set to User().Email to display the user's email address when the screen is active. Next, I have a button that, among other things, should reset the label's .Text property to "". Unfortunately, I'm unable to accomplish this. I know how it works with text input fields (reset or updateContext) but can't figure out how to do this with labels.
I tried an if-statement like: If(button_1.pressed, "", User().Email) but that didn't work.
Thanks for the help.