HarmonyOS navigation是否支持模态嵌套路由

官方文档中说navigation支持模态嵌套路由,Navigation可以嵌套在模态对话框中,也就是说可以模态框中定义路由,是否有相关示例?

在Button属性bindContentCover(this.isShow, this.myBuilder())中模态一个页面,使用一个新的navigation后模态内容不显示。

关键代码如下:

@Entry
@Component
struct Index {
  pageInfo: NavPathStack = new NavPathStack()

  build() {
    Navigation(this.pageInfo) {
      Column() {
        Button('StartTest', { stateEffect: true, type: ButtonType.Capsule })
          .width('80%')
          .height(40)
          .margin(20)
          .onClick(() => {
            this.pageInfo.pushPath({ name: 'A2' }); // 将name指定的NavDestination页面信息入栈。
          })
      }
    }.title('NavIndex')
  }
}
@Component
struct A2 {
  @State isShow: boolean = false
  pageStack: NavPathStack = new NavPathStack();

  @Builder
  myBuilder() {
    Navigation(this.pageStack) {
      Column() {
        Row() {
          Text('模态中嵌套的navigation页面')
            .fontSize(50)
            .fontWeight(FontWeight.Bold)
            .onClick(() => {
              this.pageStack.pushPathByName("A4", null, false);
            })
        }

        Text('dismiss')
          .width('80%')
          .height(40)
          .margin(20)
          .onClick(() => {
            this.isShow = false
          })
      }
      .justifyContent(FlexAlign.Center)
      .height('100%')
      .width('100%')
    }
    .hideNavBar(true)
  }

  build() {
    NavDestination() {
      Column() {
        Button('模态转场', { stateEffect: true, type: ButtonType.Capsule })
          .width('80%')
          .height(40)
          .margin(20)
          .bindContentCover(this.isShow, this.myBuilder())
          .onClick(() => {
            this.isShow = true;
          })
      }
      .width('100%')
      .height('100%')
    }
    .title('A2Page')
  }
}
HarmonyOS
2天前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
fox280

参考如下示例修改:

@Builder
myBuilder() {
  NavDestination() {
    Column() {
      Row() {
        Text('模态中嵌套的navigation页面')
          .fontSize(50)
          .fontWeight(FontWeight.Bold)
          .onClick(() => {
            this.pageStack.pushPathByName("Test240815164323062A4", null, false);
            // this.pageStack.pushPath({ name: 'Test240815164323062A4' }); // 将name指定的NavDestination页面信息入栈。
          })
      }

      Text('dismiss')
        .width('80%')
        .height(40)
        .margin(20)
        .onClick(() => {
          this.isShow = false
        })
    }
    .justifyContent(FlexAlign.Center)
    .height('100%')
    .width('100%')
  }
  // .hideNavBar(true)
}
分享
微博
QQ
微信
回复
2天前
相关问题
HarmonyOS Navigation路由问题
178浏览 • 1回复 待解决
HarmonyOS RN是否支持CodePush与Navigation
100浏览 • 1回复 待解决
$r是否支持嵌套,有人知道吗?
651浏览 • 1回复 待解决
Navigation二级导航嵌套
1566浏览 • 1回复 待解决
Navigation实现动态路由的方式
866浏览 • 1回复 待解决
HarmonyOS 支持react-navigation了吗
138浏览 • 1回复 待解决
HarmonyOS 是否navigation示例
22浏览 • 1回复 待解决