minus-squaresebschaef@feddit.detoAndroid Development@programming.dev•Composable not being drawnlinkfedilinkEnglisharrow-up0·1 year agoA Composable is not meant to return anything if it draws something. In your case it should look like this: @Composable fun Home() { BottomNavigationItem(...) } linkfedilink
A Composable is not meant to return anything if it draws something. In your case it should look like this:
@Composable fun Home() { BottomNavigationItem(...) }