Kashismails
05/13/2024, 11:26 AMKonstantin Tskhovrebov
05/13/2024, 11:36 AMKashismails
05/13/2024, 11:37 AMKonstantin Tskhovrebov
05/13/2024, 11:38 AMKashismails
05/13/2024, 11:39 AMAlex Styl
05/20/2024, 8:52 AMcoil3.compose.AsyncImage(
        modifier = modifier,
        model =url,
        contentDescription = contentDescription,
        contentScale = contentScale,
        colorFilter = if (applyTint) ColorFilter.tint(color = tint) else null,
        onError = {
            loadingProgress(ImageState.Failure)
        },
        onLoading = {
            loadingProgress(ImageState.Loading)
        },
        onSuccess = {
            loadingProgress(ImageState.Success)
        },
  
    )imageLoader3.0.0-alpha06Kashismails
05/20/2024, 8:55 AMsetSingletonImageLoaderFactory { context ->
    getAsyncImageLoader(context)
}Alex Styl
05/20/2024, 8:57 AMAlex Styl
05/20/2024, 8:59 AMKashismails
05/20/2024, 9:00 AMImageLoader.Builder(context).crossfade(true).logger(DebugLogger()).build()Alex Styl
05/20/2024, 9:03 AMio.coil-kt.coil3:coil-composeAsyncImageio.coil-kt.coil3:coilImageLoaderAlex Styl
05/20/2024, 9:03 AM