Skip to content

Commit

Permalink
Improve: Improved top navigation bar
Browse files Browse the repository at this point in the history
  • Loading branch information
gokadzev committed May 31, 2024
1 parent 48f3a7a commit 9bd12e0
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions lib/screens/home_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -103,26 +103,26 @@ class _HomePageState extends State<HomePage> {
onPressed: () => NavigationManager.router.go(
'/home/userSongs/liked',
),
icon: const Icon(FluentIcons.heart_24_filled),
icon: const Icon(FluentIcons.music_note_2_24_regular),
label: Text(context.l10n!.likedSongs),
),
const SizedBox(width: 10),
FilledButton.tonalIcon(
onPressed: () => NavigationManager.router.go(
'/home/userSongs/offline',
'/home/userLikedPlaylists',
),
icon: const Icon(FluentIcons.cellular_off_24_filled),
label: Text(context.l10n!.offlineSongs),
icon: const Icon(
FluentIcons.task_list_ltr_24_regular,
),
label: Text(context.l10n!.likedPlaylists),
),
const SizedBox(width: 10),
FilledButton.tonalIcon(
onPressed: () => NavigationManager.router.go(
'/home/userLikedPlaylists',
),
icon: const Icon(
FluentIcons.star_24_filled,
'/home/userSongs/offline',
),
label: Text(context.l10n!.likedPlaylists),
icon: const Icon(FluentIcons.cellular_off_24_filled),
label: Text(context.l10n!.offlineSongs),
),
],
),
Expand Down

0 comments on commit 9bd12e0

Please sign in to comment.