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.
This commit is contained in:
AdityasahuX07 2026-04-19 19:49:27 +05:30 committed by GitHub
parent f2e9b27df5
commit 9247e6a330
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -97,14 +97,6 @@ internal fun LazyListScope.settingsRootContent(
onClick = onContentDiscoveryClick, onClick = onContentDiscoveryClick,
) )
SettingsGroupDivider(isTablet = isTablet) 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( SettingsNavigationRow(
title = "Downloads", title = "Downloads",
description = "Manage your downloaded movies and episodes.", description = "Manage your downloaded movies and episodes.",
@ -113,6 +105,14 @@ internal fun LazyListScope.settingsRootContent(
onClick = onDownloadsClick, onClick = onDownloadsClick,
) )
SettingsGroupDivider(isTablet = isTablet) 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( SettingsNavigationRow(
title = "Integrations", title = "Integrations",
description = "Connect TMDB and MDBList services.", description = "Connect TMDB and MDBList services.",