Skip to content

Instantly share code, notes, and snippets.

View fi8er1's full-sized avatar

Mohsin Falak fi8er1

View GitHub Profile
@fvilarino
fvilarino / shared_app_bar_final.kt
Last active November 3, 2024 12:47
Shared App Bar - Final
val HomeRoute = "home"
val SettingsRoute = "settings"
val ManyOptionsRoute = "manyOptions"
val NoAppBarRoute = "noAppBar"
sealed interface Screen {
val route: String
val isAppBarVisible: Boolean
val navigationIcon: ImageVector?
val navigationIconContentDescription: String?