Add gateway connection settings UI (AppSettingsScreen + ViewModel), navigation routes for backend config and app settings, and navigation cards in SettingsScreen for accessing the new screens. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
9 lines
287 B
Kotlin
9 lines
287 B
Kotlin
package io.clawdroid.navigation
|
|
|
|
object NavRoutes {
|
|
const val CHAT = "chat"
|
|
const val SETTINGS = "settings"
|
|
const val BACKEND_SETTINGS = "backend_settings"
|
|
const val BACKEND_SETTINGS_SECTION = "backend_settings/{sectionKey}"
|
|
const val APP_SETTINGS = "app_settings"
|
|
}
|