diff options
| author | JustZvan <justzvan@justzvan.xyz> | 2026-02-06 13:38:36 +0100 |
|---|---|---|
| committer | JustZvan <justzvan@justzvan.xyz> | 2026-02-06 13:38:36 +0100 |
| commit | adb6a4fd9ec3a23c04d5e4c2ce799448237915c4 (patch) | |
| tree | 786edcf5888788e0667a90fae96d7ebec68c507a /app/src/main/java/sh/lajo/buddy/Destination.kt | |
feat: initial commit
Diffstat (limited to 'app/src/main/java/sh/lajo/buddy/Destination.kt')
| -rw-r--r-- | app/src/main/java/sh/lajo/buddy/Destination.kt | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/app/src/main/java/sh/lajo/buddy/Destination.kt b/app/src/main/java/sh/lajo/buddy/Destination.kt new file mode 100644 index 0000000..ba82cbb --- /dev/null +++ b/app/src/main/java/sh/lajo/buddy/Destination.kt @@ -0,0 +1,26 @@ +package sh.lajo.buddy + +import androidx.compose.material.icons.Icons +import androidx.compose.material.icons.filled.Home +import androidx.compose.material.icons.filled.Settings +import androidx.compose.ui.graphics.vector.ImageVector + +enum class Destination( + val route: String, + val label: String, + val icon: ImageVector, + val contentDescription: String +) { + Home( + route = "home", + label = "Home", + icon = Icons.Default.Home, + contentDescription = "Home Screen" + ), + Settings( + route = "settings", + label = "Settings", + icon = Icons.Default.Settings, + contentDescription = "Settings Screen" + ) +}
\ No newline at end of file |