#鸿蒙通关秘籍#如何在Tabs组件中拦截内容即将改变的事件?

HarmonyOS
2024-12-04 14:47:17
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
SEM梦绘江

在Tabs组件中,可以使用onContentWillChange来拦截内容即将改变的事件。具体实现如下:

@Entry
@Component
struct TabsContentWillChangeExample {
  @State currentIndex = 0;
  
  build() {
    Tabs({ index: this.currentIndex }) {
      TabContent() {
        Column().width('100%').height('100%').backgroundColor('#00CB87');
      }.tabBar('First Tab')

      TabContent() {
        Column().width('100%').height('100%').backgroundColor('#007DFF');
      }.tabBar('Second Tab')
    }
    .onContentWillChange((currentIndex, comingIndex) => {
      if (comingIndex === 1) {
        console.log('Switching to Second Tab is not allowed');
        return false;
      }
      return true;
    });
  }
}
分享
微博
QQ
微信
回复
2024-12-04 16:17:50
相关问题