1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
import 'package:flutter_ics_homescreen/export.dart';
import 'media_player_controls.dart';
import 'play_list_table.dart';
import 'segmented_buttons.dart';
class MediaPlayer extends ConsumerStatefulWidget {
const MediaPlayer({super.key});
@override
ConsumerState<MediaPlayer> createState() => _MediaPlayerState();
}
class _MediaPlayerState extends ConsumerState<MediaPlayer> {
String selectedNav = "USB";
List<String> navItems = ["USB", "SD", "Bluetooth"];
@override
Widget build(BuildContext context) {
double albumArtSize = 400;
final playlistPosition = ref.watch(mediaPlayerStateProvider
.select((mediaplayer) => mediaplayer.playlistPosition));
final playlistArt = ref.watch(playlistArtProvider);
Uint8List art = Uint8List(0);
if (playlistArt.containsKey(playlistPosition)) {
art = playlistArt[playlistPosition]!;
}
return Column(
crossAxisAlignment: CrossAxisAlignment.stretch,
children: [
SegmentedButtons(
navItems: navItems,
selectedNav: selectedNav,
),
const SizedBox(
height: 32,
),
Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
art.isNotEmpty
? Image.memory(art,
width: albumArtSize,
height: albumArtSize,
fit: BoxFit.contain)
: Container(
width: albumArtSize,
height: albumArtSize,
color: AGLDemoColors.jordyBlueColor.withOpacity(0.2),
child: Icon(
Icons.music_note,
size: albumArtSize,
color: AGLDemoColors.jordyBlueColor,
))
],
),
const SizedBox(
height: 40,
),
const Column(
crossAxisAlignment: CrossAxisAlignment.stretch,
children: [
MediaPlayerControls(),
const SizedBox(
height: 12,
),
PlayListTable(),
],
)
],
);
}
}
|