中国优质的IT技术网站
专业IT技术创作平台
IT职业在线教育平台
如何实现子组件均匀分配父容器主轴方向的剩余空间?
微信扫码分享
@Entry @Component struct Index { list: string[] = ["a", "b", "c", "d", "e"] build() { Column() { Row() { ForEach(this.list, (item: string) => { Text(item) .width(50) .height(50) .fontColor(Color.White) .textAlign(TextAlign.Center) .backgroundColor(Color.Blue) }) }.justifyContent(FlexAlign.SpaceEvenly)//均匀分配主轴方向的子内容 .width("100%") } .height('100%') .width('100%') } }