Empty input value when displaying search results in another screen?

I have a text input field that users use to put in search words. When clicking the search button the text input field is set to empty, and search results should come up in another screen. But as the text input is emptied, and then linked to another screen, the search results show the results of an empty search.
How to both empty the text field and also pass the search on to the next screen?

  • Have a screen that’s not visible to anyone.
  • In that screen, have an input field
  • When the user types the keywords and clicks search, your first action is to update that input field on that hidden screen (now you have the information saved)
  • When you take them to the next screen to show the results of the search, you use the keywords you saved in the input field on that hidden screen

Thanks. I’ll give it at try

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.