元服务简单练习
@Entry @Component struct FourPage{ build() { Column(){ Text("时代少年团").fontSize(40).backgroundColor(Color.Red) Text("我们喜欢你").fontSize(40).backgroundColor(Color.Yellow) Text("我们喜欢").fontSize(40).backgroundColor(Color.Blue) Text("马嘉祺").fontSize(40).backgroundColor(Color.Green) Text("丁晨熙").fontSize(40).backgroundColor(Color.Black) Text("宋亚轩").fontSize(40).backgroundColor(Color.Pink) Column(){ Text("时代少年团").fontSize(40).backgroundColor(Color.Red) Text("我们喜欢你").fontSize(40).backgroundColor(Color.Yellow) Text("我们喜欢").fontSize(40).backgroundColor(Color.Blue) Text("马嘉祺").fontSize(40).backgroundColor(Color.Green) Text("丁晨熙").fontSize(40).backgroundColor(Color.Black) Text("宋亚轩").fontSize(40).backgroundColor(Color.Pink) } Row({space:100}){ Text("马嘉祺").fontSize(40).backgroundColor(Color.Green) Text("丁晨熙").fontSize(40).backgroundColor(Color.Black) Text("宋亚轩").fontSize(40).backgroundColor(Color.Pink) } } } }