中国优质的IT技术网站
专业IT技术创作平台
IT职业在线教育平台
微信扫码分享
很简单的,就算没有开发能力的人看一看基本也知道怎么弄了,给你实现一下 ```private arr: number[] = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]``` ```build() { Column() { List({ space: 20, initialIndex: 0 }) { ForEach(`this.arr`, (item: number) => { ListItem() { Text(`'' + item`) .width('100%') .height(100) .fontSize(16) .textAlign(TextAlign.Center) .borderRadius(10) .backgroundColor(0xFFFFFF) } }, (item: string) => item) }.width('90%') .scrollBar(BarState.Off) }.width('100%').height('100%').backgroundColor(0xDCDCDC).padding({ top: 5 }) }