An ordered, immutable collection of modifier elements that decorate or add behavior to Compose UI elements. For example, backgrounds, padding and click event listeners decorate or add behavior to rows, text or buttons.
以上Modifier的注释,划重点ordered、immutable,Modifier会按照调用顺序处理
所以先设置什么后设置什么,会对绘制出来的样式有很大影响
下面说说Modifier可以修饰哪些样式
大小
Modifier
.width()
.height()
.fillMaxWidth()
.fillMaxHeight()
.wrapContentWidth()
.wrapContentHeight()
.size()
.fillMaxSize()
.wrapContentSize()