BottomNavigationLayout

fun BottomNavigationLayout(navController: NavHostController, screens: List<JochensNextDinnerScreen> = JochensNextDinnerScreen.values().toList() .filter { it.inBottomBar })

Composable function for creating a layout with a bottom navigation bar.

Parameters

navController

The NavController for navigating between screens.

screens

The list of screens to display in the bottom bar. By default, it includes all screens that have the inBottomBar property set to true.