diff --git a/mobile/lib/modules/search/views/search_page.dart b/mobile/lib/modules/search/views/search_page.dart index b939966e8b..22cb93657d 100644 --- a/mobile/lib/modules/search/views/search_page.dart +++ b/mobile/lib/modules/search/views/search_page.dart @@ -41,33 +41,11 @@ class SearchPage extends HookConsumerWidget { }, child: Stack( children: [ + const Center( + child: Text("Start typing to search for your photos"), + ), ListView( - children: [ - Container( - height: 300, - color: Colors.blue, - ), - Container( - height: 300, - color: Colors.red, - ), - Container( - height: 300, - color: Colors.green, - ), - Container( - height: 300, - color: Colors.blue, - ), - Container( - height: 300, - color: Colors.red, - ), - Container( - height: 300, - color: Colors.green, - ), - ], + children: const [], ), isSearchEnabled ? SearchSuggestionList(onSubmitted: _onSearchSubmitted) : Container(), ],