Skip to content

Commit

Permalink
add queue icon
Browse files Browse the repository at this point in the history
  • Loading branch information
AnandhuA committed Nov 1, 2024
1 parent 6a35194 commit 3e6d81d
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 5 deletions.
7 changes: 6 additions & 1 deletion lib/presentation/screens/LibraryScreen/last_played_list.dart
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 132,12 @@ class _LastPlayedListState extends State<LastPlayedList> {
itemBuilder: (context) => [
PopupMenuItem(
value: 0,
child: Text('Add to Queue'),
child: Row(
children: [
Icon(Icons.wrap_text),
Text('Add to Queue'),
],
),
),
PopupMenuItem(
value: 1,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 361,12 @@ class _AlbumOrPlaylistScreenState extends State<AlbumOrPlaylistScreen> {
itemBuilder: (context) => [
PopupMenuItem(
value: 0,
child: Text('Add to Queue'),
child: Row(
children: [
Icon(Icons.wrap_text),
Text('Add to Queue'),
],
),
),
PopupMenuItem(
value: 1,
Expand Down
7 changes: 6 additions & 1 deletion lib/presentation/screens/artist/artist_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 209,12 @@ class ArtistScreen extends StatelessWidget {
itemBuilder: (context) => [
PopupMenuItem(
value: 0,
child: Text('Add to Queue'),
child: Row(
children: [
Icon(Icons.wrap_text),
Text('Add to Queue'),
],
),
),
PopupMenuItem(
value: 1,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 154,12 @@ class HomepageLastplayedWidget extends StatelessWidget {
itemBuilder: (context) => [
PopupMenuItem(
value: 0,
child: Text('Add to Queue'),
child: Row(
children: [
Icon(Icons.wrap_text),
Text('Add to Queue'),
],
),
),
PopupMenuItem(
value: 1,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 162,12 @@ class SongSearchResult extends StatelessWidget {
itemBuilder: (context) => [
PopupMenuItem(
value: 0,
child: Text('Add to Queue'),
child: Row(
children: [
Icon(Icons.wrap_text),
Text('Add to Queue'),
],
),
),
PopupMenuItem(
value: 1,
Expand Down

0 comments on commit 3e6d81d

Please sign in to comment.