1
0
mirror of https://github.com/GitJournal/GitJournal.git synced 2025-07-11 04:54:20 +08:00

FolderListing AppBar: Make the title a plural

Folders instead of Folder
This commit is contained in:
Vishesh Handa
2019-12-22 15:39:13 +01:00
parent ce9a72676b
commit 83e5c44a5c

@ -107,7 +107,7 @@ class _FolderListingScreenState extends State<FolderListingScreen> {
}, },
); );
var title = const Text("Folder"); var title = const Text("Folders");
if (selectedFolder != null) { if (selectedFolder != null) {
title = const Text("Folder Selected"); title = const Text("Folder Selected");
} }