美文网首页
鸿蒙开发-style使用

鸿蒙开发-style使用

作者: 激扬飞雪 | 来源:发表于2024-05-17 16:30 被阅读0次
    @Styles function style() {
      .width(100)
      .height(50)
      .backgroundColor(Color.Pink)
      .borderRadius(50)
    }
    
    @Entry
    @Component
    struct StyleCase {
    
      build() {
        Row() {
          Column() {
            Text('测试1')
              .fontSize(20)
              .fontColor(Color.Black)
              .textAlign(TextAlign.Center)
              .style()
    
            Text('测试2')
              .fontSize(20)
              .fontColor(Color.Black)
              .textAlign(TextAlign.Center)
              .style()
              .margin({
                top: 20
              })
          }
          .width('100%')
        }
        .height('100%')
      }
    }
    

    相关文章

      网友评论

          本文标题:鸿蒙开发-style使用

          本文链接:https://www.haomeiwen.com/subject/nltwfjtx.html