Skip to content

Commit

Permalink
FEAT: create search page
Browse files Browse the repository at this point in the history
서치 페이지 완성함.
검색결과에서 디테일 페이지로 이어지게 만들기 필요
  • Loading branch information
Pjunn committed Sep 23, 2022
1 parent 8b2cea9 commit fae6a68
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion lib/page/search_page/search_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class _SearchScreenState extends State<SearchScreen> {
);
}

Widget _buildList(BuildContext context, List<DocumentSnapshot> snapshot) {
Widget _buildList(BuildContext context, List<DocumentSnapshot> snapshot) {
List<DocumentSnapshot> searchResults = [];
for (DocumentSnapshot d in snapshot) {
final cafe = DataBaseService.instance.cafeBuilder(d);
Expand Down
36 changes: 18 additions & 18 deletions pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ packages:
name: collection
url: "https://pub.dartlang.org"
source: hosted
version: "1.15.0"
version: "1.16.0"
cupertino_icons:
dependency: "direct main"
description:
Expand All @@ -77,7 +77,7 @@ packages:
name: fake_async
url: "https://pub.dartlang.org"
source: hosted
version: "1.2.0"
version: "1.3.0"
favorite_button:
dependency: "direct main"
description:
Expand All @@ -91,21 +91,21 @@ packages:
name: firebase_auth
url: "https://pub.dartlang.org"
source: hosted
version: "3.4.2"
version: "3.7.0"
firebase_auth_platform_interface:
dependency: transitive
description:
name: firebase_auth_platform_interface
url: "https://pub.dartlang.org"
source: hosted
version: "6.3.2"
version: "6.6.0"
firebase_auth_web:
dependency: transitive
description:
name: firebase_auth_web
url: "https://pub.dartlang.org"
source: hosted
version: "4.0.0"
version: "4.3.0"
firebase_core:
dependency: "direct main"
description:
Expand Down Expand Up @@ -183,7 +183,7 @@ packages:
name: geolocator_android
url: "https://pub.dartlang.org"
source: hosted
version: "3.1.8"
version: "3.2.1"
geolocator_apple:
dependency: transitive
description:
Expand Down Expand Up @@ -225,7 +225,7 @@ packages:
name: google_maps_flutter_android
url: "https://pub.dartlang.org"
source: hosted
version: "2.1.10"
version: "2.2.0"
google_maps_flutter_ios:
dependency: transitive
description:
Expand Down Expand Up @@ -267,7 +267,7 @@ packages:
name: js
url: "https://pub.dartlang.org"
source: hosted
version: "0.6.3"
version: "0.6.4"
kakaomap_webview:
dependency: "direct main"
description:
Expand Down Expand Up @@ -316,7 +316,7 @@ packages:
name: material_color_utilities
url: "https://pub.dartlang.org"
source: hosted
version: "0.1.3"
version: "0.1.4"
meta:
dependency: transitive
description:
Expand All @@ -337,7 +337,7 @@ packages:
name: path
url: "https://pub.dartlang.org"
source: hosted
version: "1.8.0"
version: "1.8.1"
plugin_platform_interface:
dependency: transitive
description:
Expand All @@ -363,7 +363,7 @@ packages:
name: source_span
url: "https://pub.dartlang.org"
source: hosted
version: "1.8.1"
version: "1.8.2"
stack_trace:
dependency: transitive
description:
Expand Down Expand Up @@ -405,7 +405,7 @@ packages:
name: test_api
url: "https://pub.dartlang.org"
source: hosted
version: "0.4.8"
version: "0.4.9"
transparent_image:
dependency: "direct main"
description:
Expand All @@ -419,14 +419,14 @@ packages:
name: typed_data
url: "https://pub.dartlang.org"
source: hosted
version: "1.3.0"
version: "1.3.1"
vector_math:
dependency: transitive
description:
name: vector_math
url: "https://pub.dartlang.org"
source: hosted
version: "2.1.1"
version: "2.1.2"
webview_flutter:
dependency: transitive
description:
Expand All @@ -440,7 +440,7 @@ packages:
name: webview_flutter_android
url: "https://pub.dartlang.org"
source: hosted
version: "2.8.14"
version: "2.9.5"
webview_flutter_platform_interface:
dependency: transitive
description:
Expand All @@ -454,7 +454,7 @@ packages:
name: webview_flutter_wkwebview
url: "https://pub.dartlang.org"
source: hosted
version: "2.7.5"
version: "2.9.3"
sdks:
dart: ">=2.16.0 <3.0.0"
flutter: ">=2.8.0"
dart: ">=2.17.0 <3.0.0"
flutter: ">=3.0.0"

0 comments on commit fae6a68

Please sign in to comment.