jetpack compose——Image宽度占满

我们在使用Image的时候往往遇到宽高没有占满的情况,以下是解决办法

// 图中是高度不足,使用下面代码
Image(painter = painterResource(R.mipmap.test2),contentDescription = null,
contentScale = ContentScale.FillHeight)

// 如果是宽度不足,则使用FillWidth

你可能感兴趣的:(jetpack-compose,android)