Код: Выделить всё
@Composable
fun myFunction(
state: MyState,
modifier: Modifier = Modifier
) = Box (modifier = modifier) {
....
}
Код: Выделить всё
@Composable
fun myFunction(
state: MyState,
modifier: Modifier = Modifier
) {
Box (modifier = modifier) {
....
}
}
Подробнее здесь: https://stackoverflow.com/questions/798 ... efinitions
Мобильная версия