소스 검색

Merge pull request #68 from rignaneseleo/patch-2

Current path returns "Select Folder" instead of an empty string
Caijinglong 5 년 전
부모
커밋
8d8ad34146
No account linked to committer's email address
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      lib/src/ui/page/photo_main_page.dart

+ 1
- 1
lib/src/ui/page/photo_main_page.dart 파일 보기

@@ -66,7 +66,7 @@ class _PhotoMainPageState extends State<PhotoMainPage>
66 66
     if (currentPath?.isAll == true) {
67 67
       return i18nProvider.getAllGalleryText(options);
68 68
     }
69
-    return currentPath?.name ?? "";
69
+    return currentPath?.name ?? "Select Folder";
70 70
   }
71 71
 
72 72
   GlobalKey scaffoldKey;