The 2.1.0 version of coil-compose library has a AsyncImage function that is very easy to use!
@StevdzaSan2 жыл бұрын
Yes, you can check my new video: kzbin.infoyu29LxHc5Jo?feature=share
@farshad4622 жыл бұрын
@@StevdzaSan please consider make a video like this ,about using coil 2.0.0
@shanzaeorangzaib82342 жыл бұрын
@@StevdzaSan I started to learn jetpack compose first so it's ok for me as a beginner that i continue to learn jetpack compose and then get knowledge of xml or it's necessary that i should learn xml first
@StevdzaSan2 жыл бұрын
@@shanzaeorangzaib8234 You don't need the knowledge of an XML if you're learning Jetpack Compose. :)
@shanzaeorangzaib82342 жыл бұрын
@@StevdzaSan thanks for your reply and guidance
@yendys743 жыл бұрын
Finallly Someone i Trust is doing a JetPack Compose
@wilkq1110 Жыл бұрын
bro, always when I look for something I find answers here, Thank you
@raffyrey9604 Жыл бұрын
This playlist is so cool thankyou so much
@flavouredflight86283 жыл бұрын
Tq Very Much Bro🤗, Was Looking At This Particular Docs Moment Ago And This Video's Notification Came♥️
@StevdzaSan3 жыл бұрын
Righ on time 👌
@bro_chenzox3 жыл бұрын
Wow! Stunning issue! Thank you for your time and endeavors!
@StevdzaSan3 жыл бұрын
Glad to help!
@putinstop59403 жыл бұрын
*Perfecto il amico, чын айтсам, кыйын экенсин жигар*
@hadjsaidaoumer3058 Жыл бұрын
Thank yooooooooooou the best one 👌👌👌👌👌👌👌👌👌👌
@rawhasan11803 жыл бұрын
Great tutorial, thanks! Want to more compose tutorials.
@StevdzaSan3 жыл бұрын
Yeah, from now on I'll create video tutorials mostly by using Jetpack Compose 👊✋
@rawhasan11803 жыл бұрын
@@StevdzaSan That would be great!
@rahathossainhimel71773 жыл бұрын
Thank You ❤️
@decepticonWave2 жыл бұрын
Amazing Video. Thanks for the video. Keep up the good work
@vapecat3 жыл бұрын
Just right when I need it, thank you
@digitalluxury20332 жыл бұрын
Professional ... thanks a loooot
@ahmadab96662 жыл бұрын
thanks alot
@CFundDOnoob3 жыл бұрын
Thanks for the nice explanation! Is it possible to load local images via URI too? The documentation doesn't give much information about that 😬
@somdatatechnology2333 жыл бұрын
Thanks you are amazing, could you tell me full jetpack compose documentation?
@xenatronics3933 жыл бұрын
very helpfull, thanks again!
@ifedayoadekoya66943 күн бұрын
Anyone have any idea how to implement a retry mechanism with coil?
@yaypacman3 жыл бұрын
This is really useful, thank you.
@StevdzaSan3 жыл бұрын
You're welcome 😊
@devildevil8733 жыл бұрын
Sir I have one doubt I can't explain it by writing I have to send the screen recording so how can I contact u so that u can help me 😭😭🙏🙏🙏🙏plz help me sir bcz.. it's my project and I got stuck in this problem
@baadrqaaba95293 жыл бұрын
Am trying to load multiple images inside a lazyrow composable , the painter state is always giving me an empty state, i dont know what am missing
@milon273 жыл бұрын
Thank you
@copybotai3 жыл бұрын
this is very useful, please if you can explain how share image and download it in storage
@brawlstar37313 жыл бұрын
Great One feedback please increase text size of editor 🙏
@kavinprabu68293 жыл бұрын
Hi can I specify the cache to be store the image only for 600 minutes?is it possible? I am searching for three days, I couldn't find any possibility?Thanks in advance
@RFbcc3 жыл бұрын
Thanks, great video !! How do we load a local image on the background thread ?
@galaxiegalaxie50033 жыл бұрын
How do you refresh manually when error or failed to load, due to slow network etc?
@hugosalazar69113 жыл бұрын
How to use coil with Firebase Storage please
@dxndivyansh3 жыл бұрын
How can I use a composable like shimmer card for the placeholder? For the earlier accompanist library I implemented it using loading state attribute of the coilImagePainter object...Any idea how to do in coil-compose??
@StevdzaSan3 жыл бұрын
You can also access painter states with this new dependency.
@GakisStylianos3 жыл бұрын
Check out Landscapist library that wraps Coil and add stuff like that on top
@samstoyroom3 жыл бұрын
Better than Glide? I know Glide supports GIF, what about Coil?
@StevdzaSan3 жыл бұрын
coil-kt.github.io/coil/gifs/
@StevdzaSan3 жыл бұрын
@@bro_chenzox Here's the solution :) github.com/skydoves/Landscapist
@Arash72af3 жыл бұрын
is it possible to export drawable or bitmap from painter? for example, i would like to extract colors with the palette, as long as the target has been handled internally and must be null, I cannot get drawable from CoilImage anymore, do you have any solution for that?
@Arash72af3 жыл бұрын
this is the work around: fun calcDominantColor(drawable: Drawable, onFinish: (Color) -> Unit) { val bmp = (drawable as BitmapDrawable).bitmap.copy(Bitmap.Config.ARGB_8888, true) Palette.from(bmp).generate{ palette -> palette?.dominantSwatch?.rgb?.let { colorValue -> onFinish(Color(colorValue)) } } } fun fetchColors(url: String, context: Context, onCalculated: (Color) -> Unit) { viewModelScope.launch { // Requesting the image using coil's ImageRequest val req = ImageRequest.Builder(context) .data(url) .allowHardware(false) .build() val result = Coil.execute(req) if (result is SuccessResult) { // Save the drawable as a state in order to use it on the composable // Converting it to bitmap and using it to calculate the palette calcDominantColor(result.drawable) { color -> onCalculated(color) } } } } and simply call the fetchColor fuction from ViewModel and pass url.
@bboydarknesz3 жыл бұрын
wow is it load asynchronously? cause we dont want to wait it load all images
@StevdzaSan3 жыл бұрын
Yep
@orlandonovasrodriguez8253 жыл бұрын
Good video
@seanaquillaemmanuel62573 жыл бұрын
I want to learn android kotlin, there are many java android tutorial. Should i learn java android too?
@StevdzaSan3 жыл бұрын
To learn Kotlin you don't need to know Java, don't worry about that and start working with Kotlin immediately. 👍🚀
@seanaquillaemmanuel62573 жыл бұрын
@@StevdzaSan thank you 😁
@bboydarknesz3 жыл бұрын
so we dont need picasso and others library like this again?????
@deviantstudio3 жыл бұрын
coil is a library
@Nick-cx4rs2 жыл бұрын
Idk why they deleted blurtransformation on new version of coil suck
@muhammed4d Жыл бұрын
I think this structure is a bit outdated. Can you please make an updated video?
@javad04703 жыл бұрын
please make tutorial about recyclerView and viewModel in jetpack compose , thank alot