Hi all, when using accompanist permission, could w...
# compose
b
Hi all, when using accompanist permission, could we call
rememberPermissionState
within a compose?
When doing this
Copy code
@OptIn(ExperimentalPermissionsApi::class)
@Composable
@Preview
fun MyPreview() {
    val cameraPermissionState = rememberPermissionState(android.Manifest.permission.CAMERA)
}
I have the preview error
java.lang.IllegalStateException: Permissions should be called in the context of an Activity