Skip to content

Commit

Permalink
add icon fot 'add to queue'
Browse files Browse the repository at this point in the history
  • Loading branch information
AnandhuA committed Nov 1, 2024
1 parent c8ca5c5 commit 6a35194
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -272,8 272,8 @@ class _AlbumOrPlaylistScreenState extends State<AlbumOrPlaylistScreen> {
mainAxisAlignment:
MainAxisAlignment.spaceBetween,
children: [
Text("Add to Queue"),
Text("Add to Queue"),
Icon(Icons.wrap_text_sharp),
Icon(Icons.wrap_text_sharp),
],
)),
child: ListTile(
Expand Down
4 changes: 2 additions & 2 deletions lib/presentation/screens/favoriteScreen/favorite_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 128,8 @@ class FavoriteScreen extends StatelessWidget {
mainAxisAlignment:
MainAxisAlignment.spaceBetween,
children: [
Text("Add to Queue"),
Text("Add to Queue"),
Icon(Icons.wrap_text_sharp),
Icon(Icons.wrap_text_sharp),
],
)),
child: ListTile(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 97,8 @@ class SongSearchResult extends StatelessWidget {
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Text("Add to Queue"),
Text("Add to Queue"),
Icon(Icons.wrap_text_sharp),
Icon(Icons.wrap_text_sharp),
],
)),
child: ListTile(
Expand Down Expand Up @@ -151,7 151,7 @@ class SongSearchResult extends StatelessWidget {
}
break;
case 1:

// Handle "Add to Playlist" action
break;
case 2:
Expand Down

0 comments on commit 6a35194

Please sign in to comment.