소스 검색

show go-to-map icon when there are no location tags in location tag search section

ashilkn 1 년 전
부모
커밋
67c61be995
1개의 변경된 파일6개의 추가작업 그리고 0개의 파일을 삭제
  1. 6 0
      lib/ui/viewer/search/search_section.dart

+ 6 - 0
lib/ui/viewer/search/search_section.dart

@@ -146,6 +146,12 @@ class _SearchSectionState extends State<SearchSection> {
                   ),
                   ),
                   const SizedBox(width: 8),
                   const SizedBox(width: 8),
                   SearchSectionEmptyCTAIcon(widget.sectionType),
                   SearchSectionEmptyCTAIcon(widget.sectionType),
+                  widget.sectionType == SectionType.location
+                      ? const Padding(
+                          padding: EdgeInsets.fromLTRB(8, 24, 8, 0),
+                          child: GoToMapWidget(),
+                        )
+                      : const SizedBox.shrink(),
                 ],
                 ],
               ),
               ),
             ),
             ),