mucke/lib/presentation/utils.dart

13 lines
312 B
Dart
Raw Normal View History

2020-03-28 11:08:43 +01:00
import 'dart:io';
import 'package:flutter/material.dart';
Image getAlbumImage(String albumArtPath) {
// return Image.asset('assets/no_cover.png');
if (albumArtPath == null || !File(albumArtPath).existsSync()) {
return Image.asset('assets/no_cover.png');
}
return Image.file(File(albumArtPath));
}