元服务练习
@Entry @Component struct FivePage{ build() { Column(){ Column(){ Text("马嘉祺").width('200').fontSize(40).backgroundColor(Color.Green) Text("丁晨熙").width('200').fontSize(40).backgroundColor(Color.Black) Text("宋亚轩").width('200').fontSize(40).backgroundColor(Color.Pink).borderStyle(BorderStyle.Solid) }.width('80%').height('30%').alignItems(HorizontalAlign.Center) Column(){ Text("马嘉祺").width('200').fontSize(40).backgroundColor(Color.Green) Text("丁晨熙").width('200').fontSize(40).backgroundColor(Color.Black) Text("宋亚轩").width('200').fontSize(40).backgroundColor(Color.Pink).borderStyle(BorderStyle.Solid) }.width('80%').height('30%').alignItems(HorizontalAlign.Start) Column(){ Text("马嘉祺").width('200').fontSize(40).backgroundColor(Color.Green) Text("丁晨熙").width('200').fontSize(40).backgroundColor(Color.Black) Text("宋亚轩").width('200').fontSize(40).backgroundColor(Color.Pink).borderStyle(BorderStyle.Solid) }.width('80%').height('30%').alignItems(HorizontalAlign.End) } } }