Ver Fonte

Merge pull request #310 from ente-io/capitalization

Fix capitalization of "Shared with"
Neeraj Gupta há 3 anos atrás
pai
commit
69546f8cca
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      lib/ui/shared_collections_gallery.dart

+ 1 - 1
lib/ui/shared_collections_gallery.dart

@@ -353,7 +353,7 @@ class OutgoingCollectionItem extends StatelessWidget {
                       : Padding(
                           padding: EdgeInsets.fromLTRB(0, 4, 0, 0),
                           child: Text(
-                            "shared with " + sharees.join(", "),
+                            "Shared with " + sharees.join(", "),
                             style: TextStyle(
                               fontSize: 14,
                               color: Theme.of(context).primaryColorLight,