Пример моей функции:
Код: Выделить всё
@Composable
fun PhotoCard() {
Stack() {
Image(imageResource(id = R.drawable.background))
Text(text = "Example")
}
}
Подробнее здесь: https://stackoverflow.com/questions/638 ... e-function
Код: Выделить всё
@Composable
fun PhotoCard() {
Stack() {
Image(imageResource(id = R.drawable.background))
Text(text = "Example")
}
}