
Текущий вывод
Column(
modifier = modifier
.fillMaxWidth()
.size(80.dp)
.background(Color.Transparent)
.border(1.dp, colorGreyLight, shape = RoundedCornerShape(8.dp)),
verticalArrangement = Arrangement.Center,
horizontalAlignment = Alignment.CenterHorizontally,
) {
Row(
modifier = modifier
.fillMaxWidth()
.weight(1f)
.background(colorPrimary),
horizontalArrangement = Arrangement.SpaceAround,
verticalAlignment = Alignment.CenterVertically
){
}
Row(
modifier = modifier
.fillMaxWidth()
.weight(1f)
.background(Color.Black),
horizontalArrangement = Arrangement.SpaceAround,
verticalAlignment = Alignment.CenterVertically
){
}
}
Подробнее здесь: https://stackoverflow.com/questions/778 ... in-compose
Мобильная версия