Add some emojis to the empty states
This commit is contained in:
parent
e584226728
commit
b133fb6c4f
2 changed files with 2 additions and 2 deletions
|
@ -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();
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue