Replies: 1 comment
-
File URIs are supported. I'd check out the exception emitted in |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm using 2.0.0-rc02 and trying to load this Uri
file:///data/user/0/com.app.name/cache/1257586825.pdf
but keep getting a blank white screen after loading. Is there something I'm missing? I thought File was supposed to be supported?Here's my Composable
AsyncImage(model = uri, contentDescription = null, modifier = Modifier .requiredSize(99.dp, 132.dp) .clickable { onItemClicked(uri) }, contentScale = ContentScale.Crop )
Beta Was this translation helpful? Give feedback.
All reactions