summaryrefslogtreecommitdiff
path: root/app/src/main/java/sh/lajo/buddy/Destination.kt
blob: ba82cbbbc0680878c85cdefcdf05bbca7696ddb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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"
    )
}