From 9247e6a3302ceeca6822b34982d2309fb0eb0bbb Mon Sep 17 00:00:00 2001 From: AdityasahuX07 Date: Sun, 19 Apr 2026 19:49:27 +0530 Subject: [PATCH] Reorder Download and Playback settings in SettingsRootPage for easy access. Why this important, in mobile device downloads not directly show its required extra swipe to access downloads since downloads is frequently visited feature than playback setting so this should be above is good to have. --- .../app/features/settings/SettingsRootPage.kt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/composeApp/src/commonMain/kotlin/com/nuvio/app/features/settings/SettingsRootPage.kt b/composeApp/src/commonMain/kotlin/com/nuvio/app/features/settings/SettingsRootPage.kt index 0f4cfb6a..47b341bc 100644 --- a/composeApp/src/commonMain/kotlin/com/nuvio/app/features/settings/SettingsRootPage.kt +++ b/composeApp/src/commonMain/kotlin/com/nuvio/app/features/settings/SettingsRootPage.kt @@ -97,14 +97,6 @@ internal fun LazyListScope.settingsRootContent( onClick = onContentDiscoveryClick, ) SettingsGroupDivider(isTablet = isTablet) - SettingsNavigationRow( - title = "Playback", - description = "Control player behavior and viewing defaults.", - icon = Icons.Rounded.PlayArrow, - isTablet = isTablet, - onClick = onPlaybackClick, - ) - SettingsGroupDivider(isTablet = isTablet) SettingsNavigationRow( title = "Downloads", description = "Manage your downloaded movies and episodes.", @@ -113,6 +105,14 @@ internal fun LazyListScope.settingsRootContent( onClick = onDownloadsClick, ) SettingsGroupDivider(isTablet = isTablet) + SettingsNavigationRow( + title = "Playback", + description = "Control player behavior and viewing defaults.", + icon = Icons.Rounded.PlayArrow, + isTablet = isTablet, + onClick = onPlaybackClick, + ) + SettingsGroupDivider(isTablet = isTablet) SettingsNavigationRow( title = "Integrations", description = "Connect TMDB and MDBList services.",