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

View File

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