Отключен экран настроек

This commit is contained in:
2026-05-17 19:29:57 +03:00
parent 7d5fd1b634
commit 2e23d0da0a

View File

@@ -9,7 +9,6 @@ import androidx.compose.foundation.layout.wrapContentHeight
import androidx.compose.material.icons.Icons import androidx.compose.material.icons.Icons
import androidx.compose.material.icons.automirrored.rounded.List import androidx.compose.material.icons.automirrored.rounded.List
import androidx.compose.material.icons.rounded.Menu import androidx.compose.material.icons.rounded.Menu
import androidx.compose.material.icons.rounded.Settings
import androidx.compose.material.icons.rounded.Sync import androidx.compose.material.icons.rounded.Sync
import androidx.compose.material3.ExperimentalMaterial3Api import androidx.compose.material3.ExperimentalMaterial3Api
import androidx.compose.material3.Icon import androidx.compose.material3.Icon
@@ -100,11 +99,13 @@ fun WallencNavRoot(
StorageSyncRoute::class.qualifiedName!!, StorageSyncRoute::class.qualifiedName!!,
Icons.Rounded.Sync, Icons.Rounded.Sync,
), ),
SettingsRoute::class.qualifiedName!! to NavBarItemData( // Settings temporarily hidden from top-level menu.
R.string.nav_label_settings, // Uncomment to restore:
SettingsRoute::class.qualifiedName!!, // SettingsRoute::class.qualifiedName!! to NavBarItemData(
Icons.Rounded.Settings // R.string.nav_label_settings,
) // SettingsRoute::class.qualifiedName!!,
// Icons.Rounded.Settings,
// ),
) )
} }