From 53bae5667224d4515f7afd0755b44f889f12586c Mon Sep 17 00:00:00 2001 From: Vitor Pamplona Date: Fri, 17 Apr 2026 09:01:06 -0400 Subject: [PATCH] Better order for the left drawer --- .../ui/navigation/drawer/DrawerContent.kt | 30 +++++++++---------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/navigation/drawer/DrawerContent.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/navigation/drawer/DrawerContent.kt index dadd6b8c9..cf1be5b00 100644 --- a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/navigation/drawer/DrawerContent.kt +++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/navigation/drawer/DrawerContent.kt @@ -578,12 +578,11 @@ fun ListContent( ) NavigationRow( - title = R.string.polls, - icon = R.drawable.ic_poll, - iconReference = 1, + title = R.string.discover_reads, + icon = Icons.AutoMirrored.Outlined.Article, tint = MaterialTheme.colorScheme.onBackground, nav = nav, - route = Route.Polls, + route = Route.Articles, ) NavigationRow( @@ -594,6 +593,15 @@ fun ListContent( route = Route.Pictures, ) + NavigationRow( + title = R.string.polls, + icon = R.drawable.ic_poll, + iconReference = 1, + tint = MaterialTheme.colorScheme.onBackground, + nav = nav, + route = Route.Polls, + ) + NavigationRow( title = R.string.discover_marketplace, icon = Icons.Outlined.Storefront, @@ -619,11 +627,11 @@ fun ListContent( ) NavigationRow( - title = R.string.articles, - icon = Icons.AutoMirrored.Outlined.Article, + title = R.string.wallet, + icon = Icons.Outlined.AccountBalanceWallet, tint = MaterialTheme.colorScheme.onBackground, nav = nav, - route = Route.Articles, + route = Route.Wallet, ) NavigationRow( @@ -634,14 +642,6 @@ fun ListContent( route = Route.NewHlsVideo, ) - NavigationRow( - title = R.string.wallet, - icon = Icons.Outlined.AccountBalanceWallet, - tint = MaterialTheme.colorScheme.onBackground, - nav = nav, - route = Route.Wallet, - ) - if (isDebug) { NavigationRow( title = R.string.route_chess,