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
27
28
29
30
31
32
33
|
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.material.icons.filled.Info
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"
),
Education(
route = "education",
label = "Education",
icon = Icons.Default.Info,
contentDescription = "Educational Mode"
),
Settings(
route = "settings",
label = "Settings",
icon = Icons.Default.Settings,
contentDescription = "Settings Screen"
)
}
|