95 lines
2.8 KiB
Dart
95 lines
2.8 KiB
Dart
import 'package:flutter/material.dart';
|
|
|
|
import '../../domain/entities/song.dart';
|
|
import '../theming.dart';
|
|
import '../utils.dart';
|
|
|
|
class AlbumArt extends StatelessWidget {
|
|
const AlbumArt({Key key, this.song}) : super(key: key);
|
|
|
|
final Song song;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return AspectRatio(
|
|
aspectRatio: 1.0,
|
|
child: Card(
|
|
elevation: 6.0,
|
|
clipBehavior: Clip.antiAlias,
|
|
margin: const EdgeInsets.all(0),
|
|
shape: RoundedRectangleBorder(
|
|
borderRadius: BorderRadius.circular(2.0),
|
|
),
|
|
child: Stack(
|
|
children: [
|
|
Container(
|
|
width: double.infinity,
|
|
height: double.infinity,
|
|
child: Image(
|
|
image: getAlbumImage(song.albumArtPath),
|
|
fit: BoxFit.cover,
|
|
),
|
|
),
|
|
Positioned(
|
|
bottom: 0,
|
|
left: 0,
|
|
right: 0,
|
|
height: 150,
|
|
child: Container(
|
|
decoration: const BoxDecoration(
|
|
gradient: LinearGradient(
|
|
begin: Alignment.topCenter,
|
|
end: Alignment.bottomCenter,
|
|
colors: [Color(0x00000000), Color(0xCC000000)],
|
|
stops: [0.0, 1.0],
|
|
),
|
|
),
|
|
),
|
|
),
|
|
Positioned(
|
|
bottom: 0,
|
|
left: 0,
|
|
right: 0,
|
|
child: Padding(
|
|
padding: const EdgeInsets.all(8.0),
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: <Widget>[
|
|
Text(
|
|
song.title,
|
|
overflow: TextOverflow.ellipsis,
|
|
// softWrap: false,
|
|
maxLines: 2,
|
|
style: TEXT_BIG.copyWith(
|
|
shadows: [
|
|
const Shadow(
|
|
blurRadius: 2.0,
|
|
color: Colors.black45,
|
|
offset: Offset(.5, .5),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
Text(
|
|
song.artist,
|
|
style: TEXT_SUBTITLE.copyWith(
|
|
color: Colors.grey[300],
|
|
shadows: [
|
|
const Shadow(
|
|
blurRadius: 2.0,
|
|
color: Colors.black45,
|
|
offset: Offset(.5, .5),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|