I want to add background image but if i add only Image(){} inside Box ,is not resizable background image to content and contain more space that i want . I found this but not work for me, https://www.tutorialkart.com/android-jetpack-compose/card-background-image/ because i want Image adjustable to column
Card() {
Image(painter = painterResource(id = R.drawable.flower), contentDescription = null)
Column(modifier = Modifier.padding(10.dp)) {
Text("AB CDE", fontWeight = FontWeight.W700)
Text("+0 12345678")
Text("XYZ city", fontWeight = FontWeight.W300)
}
}