A Composable is not meant to return anything if it draws something. In your case it should look like this:
@Composable fun Home() { BottomNavigationItem(...) }
A Composable is not meant to return anything if it draws something. In your case it should look like this: