From 135e1a7a7b9108dd2207524134d97bd4d2f6fb92 Mon Sep 17 00:00:00 2001 From: "Tran, Alex" Date: Wed, 2 Mar 2022 18:57:49 -0600 Subject: [PATCH] Added text to search page as place holder for future works --- .../lib/modules/search/views/search_page.dart | 30 +++---------------- 1 file changed, 4 insertions(+), 26 deletions(-) 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(), ],