нас три ящика
Код: Выделить всё
@Composable
fun TestScope() {
1
Box(modifier = Modifier
.fillMaxSize()
.background(color = Color.Black)) {
2
Box(
Modifier
.fillMaxSize()
.clickable { }
.background(color = Color.Yellow)
) {
}
3
Box(modifier = Modifier
.fillMaxHeight(0.4f).fillMaxWidth()
.background(color = Color.Blue)) {
}
}
}
Подробнее здесь: https://stackoverflow.com/questions/712 ... s-expected
Мобильная версия