Sky
11/16/2022, 6:57 PMMaterialTheme.colors.primarySurface
in an Activity …when i try to use it
example:
systemUiController.setNavigationBarColor(color = MaterialTheme.colors.primarySurface)
i get the error @Composable invocations can only happen from the context of a @Composable functionKevin Del Castillo
11/16/2022, 7:25 PMsuspend
function from a non-suspend one. Pass the systemUiController
down to your composable and then use a SideEffect
: https://developer.android.com/jetpack/compose/side-effects#sideeffect-publishAfzal Najam
11/16/2022, 7:36 PMmattinger
11/17/2022, 5:34 AM