In the Powerapp app, I have a screen that contains text input to enter CityName. When I click on the Clear button, how can I clear the value of the text input?
Solution
Step 1: Let text input name is "txtCity" and set it's Default
property to ""
Step 2: Set OnSelect
event of button to Reset(txtCity)
That would be one way of resetting, there are other ways to solve it too. By assigning a variable to TextInput's default property and setting that variable to "" or any other default value you want based on the scenario. How and when to use reset can be found here: https://learn.microsoft.com/sl-si/powerapps/functions/function-reset