ArkUI中的Margin类,如何分别取出Margin中的left,top,right,bottom属性的值

HarmonyOS
2天前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
Excelsior_abit

关于margin属性设置参考文档

https://developer.huawei.com/consumer/cn/doc/harmonyos-references-V5/ts-universal-attributes-size-V5#示例

这里是简易demo

@Entry
@Component
struct Index {
  @State message: string = 'Hello World';

  build() {
    RelativeContainer() {
      Text(this.message)
        .id('HelloWorld')
        .fontSize(50)
        .fontWeight(FontWeight.Bold)
        .margin({
          top:70,
          left:20,
          right:5,
          bottom:5
        })
        .border({ width: 5, color: 0x317AF7, radius: 10, style: BorderStyle.Dotted })
    }
    .height('100%')
    .width('100%')
  }
}
分享
微博
QQ
微信
回复
2天前
相关问题
HarmonyOS Button 无法添加margin left right
280浏览 • 1回复 待解决
HarmonyOS rightpadding和margin不生效
843浏览 • 1回复 待解决
span组件使用margin属性失效
2052浏览 • 1回复 待解决
HarmonyOS 属性默认问题
309浏览 • 1回复 待解决
LeftTop为什么不生效?
800浏览 • 1回复 待解决
HarmonyOS margin不生效
661浏览 • 1回复 待解决
HarmonyOS 怎么给属性赋默认
889浏览 • 1回复 待解决
HarmonyOS margin不生效问题
108浏览 • 1回复 待解决