我只是尝试从我的资源中加载图像,val context = ambient(ContextAmbient)
但是当我尝试运行该项目时,我在生成代码时遇到错误。
java.lang.IllegalStateException:后端内部错误:代码生成期间出现异常
@Composable
fun MovieImage(image: Int) {
val context = ambient(ContextAmbient)
Container(modifier = Modifier.None, width = 24.dp, height = 24.dp) {
DrawImage(image = imageFromResource( context.resources, image))
}
}