Alexandru Gheorghe
08/14/2024, 1:57 PMAlexandru Gheorghe
08/14/2024, 1:59 PMStylianos Gakis
08/14/2024, 2:11 PMAlexandru Gheorghe
08/14/2024, 2:12 PMAlexandru Gheorghe
08/14/2024, 2:14 PMStylianos Gakis
08/14/2024, 2:16 PM.align(Alignment.BottomStart)
?
If you want the card to take up more space, you need to make it bigger, then it should be more visible that your text is on the bottom startAlexandru Gheorghe
08/14/2024, 2:21 PMBox {
Column(
Column(
modifier = Modifier
.fillMaxWidth()
.fillMaxWidth()
.height(300.dp),
verticalArrangement = Arrangement.Center,
horizontalAlignment = Alignment.CenterHorizontally
horizontalAlignment = Alignment.CenterHorizontally
) {
// Composables here like button aligned Center to add a photo
// Composables here like button aligned Center to add a photo
}
Column(
Column(
verticalArrangement = Arrangement.Bottom,
horizontalAlignment = Alignment.Start
horizontalAlignment = Alignment.Start
) {
// Composables here to display full name, email address and location
// Composables here to display full name, email address and location
}
}}
Alexandru Gheorghe
08/14/2024, 2:22 PMAlexandru Gheorghe
08/14/2024, 3:41 PM.align(Alignment.BottomStart)
Did the trickk