如何使用 Jetpack Compose 同时使用颜色和图像作为背景?
How to use both color and image as background with Jetpack Compose?
除了颜色之外,我还想为我的屏幕使用背景颜色(比如蓝色)和图像(以添加效果)。我该怎么做?
目前我在做:
Box(
modifier = Modifier.fillMaxSize().background(color = MaterialTheme.colors.background)) {
.
.
.
.
.
}
但是在'background'中没有指定图片的选项。
我该怎么做?
Box(modifier = Modifier.fillMaxSize().background(color = MaterialTheme.colors.background)) {
Image(
painter = painterResource(R.drawable.header),
contentDescription = null,
modifier = Modifier
.fillMaxSize(),
contentScale = // Your contentscale
)
}
除了颜色之外,我还想为我的屏幕使用背景颜色(比如蓝色)和图像(以添加效果)。我该怎么做?
目前我在做:
Box(
modifier = Modifier.fillMaxSize().background(color = MaterialTheme.colors.background)) {
.
.
.
.
.
}
但是在'background'中没有指定图片的选项。 我该怎么做?
Box(modifier = Modifier.fillMaxSize().background(color = MaterialTheme.colors.background)) {
Image(
painter = painterResource(R.drawable.header),
contentDescription = null,
modifier = Modifier
.fillMaxSize(),
contentScale = // Your contentscale
)
}