I recently updated to io.coil-kt.coil3:coil-compose:3.1.0 from io.coil-kt.coil:coil-compose:3.1.0. #2886
Unanswered
VivekYadavDeveloper
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
I recently updated to io.coil-kt.coil3:coil-compose:3.1.0 from io.coil-kt.coil:coil-compose:3.1.0. My app loads banner images from Firestore (hosted on Cloudinary). Are there any changes in how Coil 3 handles image requests in Jetpack Compose compared to the previous version? My current implementation uses AsyncImage with ImageRequest.Builder. Any suggestions or improvements?
`@Composable
fun BannerView(modifier: Modifier = Modifier) {
var bannerList by remember { mutableStateOf<List>(emptyList()) }
}`
All reactions