#鸿蒙通关秘籍#如何使用控制按钮管理SideBarContainer侧边栏的显示?

HarmonyOS
10h前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
FTP寒窗幽梦

通过使用 controlButton 属性,可以给 SideBarContainer 添加侧边栏控制按钮,设置按钮的位置、大小和显示的图标。通过图标的显示与否来控制侧边栏的显示和隐藏状态。

bash @Entry @Component struct SideBarButtonExample { 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%")
.controlButton({
  width: 30,
  height: 30,
  top: 15,
  icons: {
    shown: $r("app.media.icon_back"),
    hidden: $r("app.media.icon_menu"),
    switching: $r("app.media.icon_back")
  }
})

} }

分享
微博
QQ
微信
回复
8h前
相关问题
关于sidebar侧边遮挡导航问题
430浏览 • 1回复 待解决
HarmonyOS 如何显示容器侧边
313浏览 • 1回复 待解决