Add some emojis to the empty states

This commit is contained in:
Vishnu Mohandas 2020-06-16 01:08:57 +05:30
parent e584226728
commit b133fb6c4f
2 changed files with 2 additions and 2 deletions

View file

@ -99,7 +99,7 @@ class _GalleryState extends State<Gallery> {
Widget _onDataLoaded(List<Photo> photos) {
_photos = photos;
if (_photos.isEmpty) {
return Center(child: Text("Nothing to see here."));
return Center(child: Text("Nothing to see here! 👀"));
}
_selectedPhotos = widget.selectedPhotos ?? Set<Photo>();
_collatePhotos();

View file

@ -42,7 +42,7 @@ class _RemoteFolderGalleryWidgetState extends State<RemoteFolderGalleryWidget> {
builder: (context, snapshot) {
if (snapshot.hasData) {
if (snapshot.data.isEmpty) {
return Center(child: Text("Nothing to see here!"));
return Center(child: Text("Nothing to see here! 👀"));
} else {
return _getRemoteFolderGalleryWidget(snapshot.data);
}