picoclaw/android/app/src/main/java/io/clawdroid/navigation/NavRoutes.kt
Kohei 908c1e051b feat: add AppSettingsScreen and navigation integration (Step 6)
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>
2026-02-27 15:21:55 +09:00

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"
}