Creating an Image Card Composable - Android Jetpack Compose - Part 4

preview_player
Показать описание
In this video we will create an image card.

⭐ Get certificates for your future job
⭐ Save countless hours of time
⭐ 100% money back guarantee for 30 days
⭐ Become a professional Android developer now:

💻 Let me personally review your code and provide individual feedback, so it won't backfire and cost you a fortune in future:

Рекомендации по теме
Комментарии
Автор

7:45
For aligning individual items in a Box, you dont need to create another Box and align the item in that box with contentAlignment. You can use the align() Modifier and Specify the alignment
So for aligning the text in this video you can do:
Text(
text = "Kermit the frog",
modifier = Modifier

.padding(12.dp),
fontSize = 16.sp
)

The same can be done to align individual Items in a Row or a Column too😃

Sudhindra
Автор

if someone is facing issue in elevation attribute :
Card(
shape = RoundedCornerShape(20.dp),
elevation = CardDefaults.cardElevation(
defaultElevation = 10.dp
)
)

programmingThings
Автор

Amazing video man. I would love to see you continue to make certain types of ui elements and build off other tutorials with compose :)

MrCelestiaI
Автор

Nice Trick with the Brush and the Gradient, I am really amazed by the way I always find and learn something new from your videos regardless of the level being a beginner's level. I wish I was listening to you by April 9th, 2021.

tonnie
Автор

Thanks a lot, it is the first time I've ever had seem a precise definition why to use sp in text!!!!

wilsonpedrotamegajunior
Автор

Please create a video on app optimization (low memory & battery usage)

kashifbhatti
Автор

If someone would have struggle with Card, if you use Material3, material 3 has no Card Composable, add material standart version to graddle dependencies (this may become obsolete and in future Material3 should have new composables)

marcel
Автор

Love your Android Tutorials, makes complex things simple to understand everytime!!😊

swaminathbera
Автор

nice bro
I'm learning android now, I'm taking a course called Gita, and in this course we came to jetpack, with your guide, I got very good results, I really liked it, good luck with your work. I'm not good at English so these words may be wrong, I translated these words in google translate) good luck with your work

azamovdev
Автор

It's fun, exciting and effective! Keep going!

_angel_mohammadi
Автор

16:08
You can also give shadow without hard coding


Box(
modifier = Modifier
.fillMaxWidth()
.height(50.dp)
.background(
brush = Brush.verticalGradient(
listOf(
Color.Transparent,
Color.Black
),
),

){}

Notify me, if I am wrong. I am a starter :) Just Experimenting

jishnuvedhikz
Автор

hello philipp. can you explain that how can show image from URL in JetPack image like picasso or glide . tanks for all your videos. you are the best

pooyalaryan
Автор

Спасибо за ваш труд очень хорошие уроки всего вам хорошего👍👍👍

brigadir
Автор

Amazing trick at the end of the video, nice content, congrats, give it a like in all videos I saw at the moment.

carlosgalves
Автор

very nice video with simple explanation🙂

sarahmohamed
Автор

Brother
Hats off to your dedication, quality content, explanation style and everything. It's not been a long I started watching your videos but even in this short time, I am so much impressed by your effort of producing quality content.
For now, I only have one suggestion:
For our own coding we are free to use any theme... but could you please use light theme in android studio for tutorials videos?

sooshil
Автор

Use this to align the text at the bottom of the box instead of using nested box
Text(text = "Hello world", modifier = Modifier

)

PrathivAR-fl
Автор

Great video, thank you from Duisburg/Germany

siggilotz
Автор

More of compose bro, or recommend any books for educational purpose❤

tsaykostya
Автор

Amazing tutorial, thanks! But isn't xml just way faster to implement?

daniboy