中国优质的IT技术网站
专业IT技术创作平台
IT职业在线教育平台
如何通过List组件的lanes属性适配不同尺寸的设备?
微信扫码分享
@Entry @Component struct Index { @State list: string[] = new Array(10).fill("a") build() { Column() { List() { ForEach(this.list, (e: string) => { ListItem() { Text(e) .width("100%") .height(100) .textAlign(TextAlign.Center) .backgroundColor(Color.Yellow) .fontSize(20) .margin(10) } }) }.lanes({minLength:200,maxLength:300}) }.width("100%") .height("100%") } }