Просмотр исходного кода

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

ashilkn 1 год назад
Родитель
Сommit
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),
                   SearchSectionEmptyCTAIcon(widget.sectionType),
+                  widget.sectionType == SectionType.location
+                      ? const Padding(
+                          padding: EdgeInsets.fromLTRB(8, 24, 8, 0),
+                          child: GoToMapWidget(),
+                        )
+                      : const SizedBox.shrink(),
                 ],
               ),
             ),