Tabs组件自定义导航栏UI问题

是否支持不同高度的TabContent在同一个TabBar中.

HarmonyOS
2024-06-04 00:11:34
1454浏览
收藏 0
回答 1
回答 1
按赞同
/
按时间
躺平嗑产品懒猫
@Entry 
@Component 
struct Drag2 { 
  @State tabArray: Array<number> = [0, 1, 2] 
  @State focusIndex: number = 0 
  @State pre: number = 0 
  @State index: number = 0 
  private controller: TabsController = new TabsController() 
  @State test: boolean = false 
  @State icon: string = 'app.media.icon' 
 
  // @State marginBottom:number = 0 
  // 单独的页签 
 
  @Builder 
  Tab(tabName: string, tabItem: number, tabIndex: number) { 
    Row({ space: 10 }) { 
      Text(tabName).fontSize(18) 
      Stack() { 
        // Column().width(tabIndex === this.focusIndex ? 50:25 ).height(tabIndex === this.focusIndex ? 50:25).borderRadius(25).backgroundColor(Color.Red) 
        Image($r('app.media.local')) 
          .width(tabIndex === this.focusIndex ? 40 : 20).height(tabIndex === this.focusIndex ? 40 : 20) 
      } 
      .margin({ bottom: tabIndex === this.focusIndex ? 20 : 0 }) 
    } 
    .justifyContent(FlexAlign.Center) 
 
    .borderRadius({ topLeft: 10, topRight: 10 }) 
    .onClick(() => { 
      this.controller.changeIndex(tabIndex) 
      this.focusIndex = tabIndex 
    }) 
    .backgroundColor(tabIndex === this.focusIndex ? "#ffefb2b2" : "#ffb7b7b7") 
    .width(120) 
    .height(50) 
  } 
 
  build() { 
    Column() { 
      Column() { 
        // 页签 
        Row() { 
          Scroll() { 
            Row() { 
              ForEach(this.tabArray, (item: number, index: number) => { 
                this.Tab("页签 " + item, item, index) 
              }) 
            } 
            .margin({ top: 20 }) 
            .justifyContent(FlexAlign.SpaceBetween) 
          } 
          // .align(Alignment.Start) 
          .scrollable(ScrollDirection.Horizontal) 
          .scrollBar(BarState.Off) 
          .width('100%') 
          .backgroundColor("#ffb7b7b7") 
        } 
        .justifyContent(FlexAlign.SpaceBetween) 
        .width('100%') 
        .backgroundColor("#ffb7b7b7") 
 
        //tabs 
        Tabs({ barPosition: BarPosition.Start, controller: this.controller }) { 
          ForEach(this.tabArray, (item: number, index: number) => { 
            TabContent() { 
              Text('我是页面 ' + item + " 的内容") 
                .height(300) 
                .width('100%') 
                .fontSize(30) 
            } 
 
            .backgroundColor(Color.Blue) 
          }) 
        } 
 
        .barHeight(0) 
        .animationDuration(100) 
        .onChange((index: number) => { 
          console.log('foo change') 
          this.focusIndex = index 
        }) 
      } 
      .alignItems(HorizontalAlign.Start) 
      .width('100%') 
    } 
    .height('100%') 
  } 
}
  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.
  • 19.
  • 20.
  • 21.
  • 22.
  • 23.
  • 24.
  • 25.
  • 26.
  • 27.
  • 28.
  • 29.
  • 30.
  • 31.
  • 32.
  • 33.
  • 34.
  • 35.
  • 36.
  • 37.
  • 38.
  • 39.
  • 40.
  • 41.
  • 42.
  • 43.
  • 44.
  • 45.
  • 46.
  • 47.
  • 48.
  • 49.
  • 50.
  • 51.
  • 52.
  • 53.
  • 54.
  • 55.
  • 56.
  • 57.
  • 58.
  • 59.
  • 60.
  • 61.
  • 62.
  • 63.
  • 64.
  • 65.
  • 66.
  • 67.
  • 68.
  • 69.
  • 70.
  • 71.
  • 72.
  • 73.
  • 74.
  • 75.
  • 76.
  • 77.
  • 78.
  • 79.
  • 80.
  • 81.
  • 82.
  • 83.
  • 84.
  • 85.
  • 86.
  • 87.
  • 88.
分享
微博
QQ
微信
回复
2024-06-04 22:54:33


相关问题
如何自定义模拟Tabs组件
1686浏览 • 1回复 待解决
HarmonyOS UI组件自定义点击范围
1167浏览 • 1回复 待解决
如何自定义Video组件控制样式
3600浏览 • 1回复 待解决
HarmonyOS 自定义组件问题
1346浏览 • 1回复 待解决
HarmonyOS 地图组件如何添加自定义UI
553浏览 • 1回复 待解决
HarmonyOS 如何自定义导航转场
923浏览 • 1回复 待解决