mirror of
https://github.com/88srzh/comics_db.git
synced 2025-08-06 17:29:50 +08:00
fixed tv top rated movie not available image
This commit is contained in:
BIN
images/image-not-available.jpg
Normal file
BIN
images/image-not-available.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 6.0 KiB |
@ -14,4 +14,5 @@ class AppImages {
|
||||
static const String ellipseDot = 'images/components/Ellipse@1x.png';
|
||||
static const String movieAppBarLogo = 'images/components/movie_logo@1x.png';
|
||||
static const String noImageAvailable = 'images/no-image-available.jpg';
|
||||
static const String imageNotAvailableHorizontal = 'images/image-not-available.jpg';
|
||||
}
|
||||
|
@ -67,7 +67,7 @@ class _TopRatedTvListItemWidget extends StatelessWidget {
|
||||
decoration: const BoxDecoration(
|
||||
borderRadius: BorderRadius.all(Radius.circular(12)),
|
||||
),
|
||||
child: backdropPath != null ? Image.network(ImageDownloader.imageUrl(backdropPath!)) : Image.asset(AppImages.noImageAvailable),
|
||||
child: backdropPath != null ? Image.network(ImageDownloader.imageUrl(backdropPath!)) : Image.asset(AppImages.imageNotAvailableHorizontal),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
Reference in New Issue
Block a user