From adb6a4fd9ec3a23c04d5e4c2ce799448237915c4 Mon Sep 17 00:00:00 2001 From: JustZvan Date: Fri, 6 Feb 2026 13:38:36 +0100 Subject: feat: initial commit --- app/src/main/java/sh/lajo/buddy/Destination.kt | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 app/src/main/java/sh/lajo/buddy/Destination.kt (limited to 'app/src/main/java/sh/lajo/buddy/Destination.kt') 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 -- cgit v1.2.3