.clip(RoundedCornerShape(topStart = 10.dp,
topEnd = 10.dp,
bottomEnd = 10.dp,
bottomStart = 10.dp)
.background(bgcolor)
先clip再设置background,圆角才会生效
modifier 中Padding在最前面时是组件外部的Padding,在设置frame之后设置Padding则是组件内部的Padding
Column需要显式设置height的值才能滚动
.clip(RoundedCornerShape(topStart = 10.dp,
topEnd = 10.dp,
bottomEnd = 10.dp,
bottomStart = 10.dp)
.background(bgcolor)
先clip再设置background,圆角才会生效
modifier 中Padding在最前面时是组件外部的Padding,在设置frame之后设置Padding则是组件内部的Padding
Column需要显式设置height的值才能滚动