#鸿蒙学习大百科#Navigation如何通过CustomBuilder实现底部工具栏?

Navigation如何通过CustomBuilder实现底部工具栏?

HarmonyOS
2024-10-25 10:26:03
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
朝花惜拾丶
@Entry
@Component
struct Index {
  build() {
    Column() {
      Navigation() {
      }
      .mode(NavigationMode.Stack)
      .toolbarConfiguration(this.toolBuilder())
    }
    .width('100%')
    .height('100%')
    .justifyContent(FlexAlign.Center)
  }
  @Builder
  toolBuilder() {//自定义
    Column() {
      Image($r("app.media.icon01"))
        .width(30)
        .height(30)
      Text("tool")
    }
  }
}
分享
微博
QQ
微信
回复
2024-10-25 15:51:39
相关问题
#鸿蒙学习大百科#如何实现ui优化?
239浏览 • 1回复 待解决