Vincent tiensi
03/24/2020, 4:44 AMRow {
// ...
Container(width = 48.dp, height = 48.dp) {
DrawVector(profilePlaceholderImage)
}
Spacer(modifier = LayoutPadding(start = 16.dp))
Column {
// ...
drawNameAndStars()
}
// This line of code isn't working as expected
Container(width = 14.dp, height = 14.dp, modifier = LayoutFlexible(1f) + LayoutAlign.CenterRight) {
DrawVector(arrowVector)
}
}
molikto
03/24/2020, 5:33 AMVincent tiensi
03/24/2020, 5:33 AMaiidziis
03/24/2020, 5:35 AMModifiers
is about to change.Vincent tiensi
03/24/2020, 5:36 AMZach Klippenstein (he/him) [MOD]
03/24/2020, 2:38 PMListItem
composable? I believe it gives you exactly this layout, you don't need to write it yourself.Vincent tiensi
03/25/2020, 3:52 AM