HarmonyOS 让tabbar居左显示

想要tabBar和tabContent左对齐展示,留出右边的位置

HarmonyOS
2024-12-24 17:11:52
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
zbw_apple

目前没有api设置,可以使用自定义tabbar实现,demo如下:

@Entry
@Component
struct TabsExample {
  @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
  // 单独的页签
  @Builder
  Tab(tabName: string, tabItem: number, tabIndex: number) {
    Row({ space: 20 }) {
      Text(tabName).fontSize(18)
    }
    .justifyContent(FlexAlign.Center)
    .constraintSize({ minWidth: 35 })
    .width(100)
    .height(60)
    .borderRadius({ topLeft: 10, topRight: 10 })
    .onClick(() => {
      this.controller.changeIndex(tabIndex)
      this.focusIndex = tabIndex
    })
  }

  build() {
    Column() {
      Column() {
        // 页签
        Row({ space: 7 }) {
          Scroll() {
            Row() {
              ForEach(this.tabArray, (item: number, index: number) => {
                this.Tab('页签 ' + item, item, index)
              })
            }
            .justifyContent(FlexAlign.Start)
          }
          .align(Alignment.Start)
          .scrollable(ScrollDirection.Horizontal)
          .scrollBar(BarState.Off)
          .width('90%')
        }
        .alignItems(VerticalAlign.Bottom)
        .width('100%')
        .backgroundImage($r('app.media.bg'))
        .backgroundImageSize({ width: '100%', height: '100%' })
      }
      .alignItems(HorizontalAlign.Start)
      .width('100%')

      //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.Pink)
        })
      }
      .width('100%')
      .barHeight(0)
      .animationDuration(100)
      .onChange((index: number) => {
        console.log('foo change')
        this.focusIndex = index
      })
    }
    .height('100%')
  }
}
分享
微博
QQ
微信
回复
2024-12-24 20:17:25
相关问题
HarmonyOS tabs的tabBar怎么
652浏览 • 1回复 待解决
HarmonyOS Tabs组件tabBar是否可以
138浏览 • 1回复 待解决
HarmonyOS tabs位置如何显示
117浏览 • 1回复 待解决
HarmonyOS Tab控件的bar怎么显示
190浏览 • 1回复 待解决
Tabs如何才能显示
1070浏览 • 1回复 待解决
HarmonyOS Tab如何对齐
35浏览 • 1回复 待解决
HarmonyOS 自定义tabbar对齐
100浏览 • 1回复 待解决
HarmonyOS list滑 字体显示异常
213浏览 • 1回复 待解决