HarmonyOS Tabs的shadow实际渲染效果不对

通过开发工具创建项目,创建时选择`Flexible Layout Ability`,在Tabs添加shadow属性,期望效果是在tabbar上有一条阴影,但实际效果没有,而且在TabContent上面了。

相关代码如下:

  build() {  
    Column() {  
      Tabs({  
        barPosition: new BreakPointType({  
          sm: BarPosition.End,  
          md: BarPosition.End,  
          lg: BarPosition.Start,  
          xl: BarPosition.Start  
        }).getValue(this.currentBreakpoint),  
      })  
      {  
        ForEach(this.tabs, (item: TabBarItem, index?: number) => {  
          TabContent() {  
            if(2 != index){  
              GridComponent()  
            }  
          }  
          .tabBar(this.TabBarBuilder(item, index))  
          // 100%  
          .width(CommonConstants.TAB_CONTENT_WIDTH)  
          // 100%  
          .height(CommonConstants.TAB_CONTENT_HEIGHT)  
        })  
      }  
      .vertical(new BreakPointType({  
        sm: CommonConstants.TAB_SM_VERTICAL,  
        md: CommonConstants.TAB_MD_VERTICAL,  
        lg: CommonConstants.TAB_LG_VERTICAL,  
        xl: CommonConstants.TAB_XL_VERTICAL  
      })  
      .getValue(this.currentBreakpoint))  
      .barWidth(new BreakPointType({  
        // 100%  
        sm: CommonConstants.TAB_SM_BAR_WIDTH,  
        // 100%  
        md: CommonConstants.TAB_MD_BAR_WIDTH,  
        // 96vp  
        lg: CommonConstants.TAB_LG_BAR_WIDTH,  
        // 96vp  
        xl: CommonConstants.TAB_XL_BAR_WIDTH  
      })  
      .getValue(this.currentBreakpoint))  
      .barHeight(new BreakPointType({  
        // 56vp  
        sm: CommonConstants.TAB_SM_BAR_HEIGHT,  
        // 56vp  
        md: CommonConstants.TAB_MD_BAR_HEIGHT,  
        // 60%  
        lg: CommonConstants.TAB_LG_BAR_HEIGHT,  
        // 60%  
        xl: CommonConstants.TAB_XL_BAR_HEIGHT  
      })  
      .getValue(this.currentBreakpoint))  
      .onChange((index: number) => {  
        this.currentIndex = index  
      })  
      .backgroundColor($r('app.color.tabbarBgColor'))  
      .shadow({  
        radius: 2,  
        color: '#1a000000',  
        offsetY: -1,  
        offsetX: 0  
      })  
    }  
    .backgroundColor($r('app.color.globalBgColor'))  
  }  
}
HarmonyOS
2024-10-21 12:44:07
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
Heiang

按照您的描述,我这边创建了demo,目前是这样实现的效果:

@Builder tabBuilder(title: string, targetIndex: number) {  
    Column() {  
      Divider()  
        .width('100%')  
        .margin({ bottom: 5})  
        .shadow({  
          radius: 1,  
          color: Color.Gray,  
          offsetY: -1,  
          offsetX: 0  
        })  
      Text(title)  
        .fontColor(this.currentIndex === targetIndex ? '#1698CE' : '#6B6B6B')  
    }  
    .onClick(() => {  
      let cur:Tmp = new Tmp()  
      cur.foo(targetIndex)  
      cur.tabFoo()  
    })  
  }
分享
微博
QQ
微信
回复
2024-10-21 17:29:32
相关问题
HarmonyOS tabs阴影效果
519浏览 • 1回复 待解决
HarmonyOS Tabs如何取消弹簧效果
250浏览 • 1回复 待解决
Navigation实现Tabs切换效果
1078浏览 • 1回复 待解决
Tabs 出现/消失转场动画效果
274浏览 • 1回复 待解决
如何实现Tabs组件tarbar吸顶效果
947浏览 • 1回复 待解决
tabs结合scroll实现吸顶效果
1209浏览 • 1回复 待解决
HarmonyOS Tabs组件Tabs如何左对齐?
251浏览 • 1回复 待解决
HarmonyOS 绝对布局位置不对
224浏览 • 0回复 待解决
如何获取List实际大小
2013浏览 • 1回复 待解决
HarmonyOS Tabs组件嵌套Tabs组件问题
599浏览 • 1回复 待解决