diff --git a/mobile/assets/2.0x/new_empty_album_dark.png b/mobile/assets/2.0x/new_empty_album_dark.png new file mode 100644 index 0000000000..6c8e189182 Binary files /dev/null and b/mobile/assets/2.0x/new_empty_album_dark.png differ diff --git a/mobile/assets/3.0x/new_empty_album_dark.png b/mobile/assets/3.0x/new_empty_album_dark.png new file mode 100644 index 0000000000..1cf4a4de33 Binary files /dev/null and b/mobile/assets/3.0x/new_empty_album_dark.png differ diff --git a/mobile/assets/new_empty_album_dark.png b/mobile/assets/new_empty_album_dark.png new file mode 100644 index 0000000000..10249439dd Binary files /dev/null and b/mobile/assets/new_empty_album_dark.png differ diff --git a/mobile/lib/ui/viewer/gallery/empty_album_state.dart b/mobile/lib/ui/viewer/gallery/empty_album_state.dart index 72c13c226e..701406c7e3 100644 --- a/mobile/lib/ui/viewer/gallery/empty_album_state.dart +++ b/mobile/lib/ui/viewer/gallery/empty_album_state.dart @@ -17,13 +17,16 @@ class EmptyAlbumState extends StatelessWidget { @override Widget build(BuildContext context) { + final isLightMode = Theme.of(context).brightness == Brightness.light; return isFromCollectPhotos ? Stack( children: [ Center( child: Opacity( opacity: 0.5, - child: Image.asset('assets/new_empty_album.png'), + child: isLightMode + ? Image.asset('assets/new_empty_album.png') + : Image.asset('assets/new_empty_album_dark.png'), ), ), ],