#鸿蒙通关秘籍#如何动态调整SideBarContainer的侧边栏宽度?

HarmonyOS
2024-12-12 14:30:35
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
樱花语TCP

通过 sideBarWidthminSideBarWidthmaxSideBarWidth 属性,可以设置侧边栏的宽度和其最小最大范围,以实现动态调整侧边栏的宽度。

bash @Entry @Component struct SideBarWidthExample { build() { SideBarContainer(SideBarContainerType.Overlay) { Column() { Text("侧边栏") .width("100%") .height("100%") .fontSize(30) .textAlign(TextAlign.Center) } .width(10) .height("100%") .backgroundColor("#aabbcc")

  Column() {
    Text("内容区域")
      .width("100%")
      .height("100%")
      .fontSize(30)
      .textAlign(TextAlign.Center)
  }
  .width("100%")
  .height("100%")
  .backgroundColor("#bbccaa")
}
.width("100%")
.height("100%")
.sideBarWidth(150)
.minSideBarWidth(100)
.maxSideBarWidth(200)

} }

分享
微博
QQ
微信
回复
2024-12-12 16:05:05
相关问题
关于sidebar侧边遮挡导航问题
616浏览 • 1回复 待解决