I 've a search form with multiple fields and it's result (a json from an http call) should be listed in a ListView. Which is the correct pattern in Flutter to show that results? Update the state of the ListView (making it visible) and hide the search form? Or wait for the results in the search form page (search_page.dart) and then send those results to other page (results_page.dart) where the ListView will show it? Thanks!