Mehdi Haghgoo
11/09/2021, 12:53 PMLocalInfo.current.bottomBarItems
as part of my CompositionLocal or should it be BottomBarItems?Big Chungus
11/09/2021, 12:59 PM@Composable
fun MyButton {
Button(...)
}
// BUT
@Composable
fun <T> rememberMutableStateOf(default: T): MutableState<T> = remember{mutableStateOf(default)}
Andrew Neal
11/09/2021, 2:19 PM