<Align Text and Image vertically inside Row in Com...
# stackoverflow
u
Align Text and Image vertically inside Row in Compose I've got a Row with a star Image and some Text inside. I've been trying to make them align vertically whilst keeping the Text height flexible but they're always a bit off (see screenshot). @Composable fun MyRating() { Row( modifier = Modifier .background(color = Color.Green) .wrapContentSize(), verticalAlignment = Alignment.CenterVertically ) { val text = buildAnnotatedString {...