HarmonyOS 垂直Tabs的tabbar,怎么让他置顶从上到下顺序排列,而不要均匀排列

api tabbar好像只能平均分布,或者设置BarMode.Scrollable模式,但是这种模式如果没达到滚动的长度时候,只能居中显示。不能置顶显示嘛?

HarmonyOS
1天前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
superinsect

没有配置项可以去除居中显示,这种情况需要自定义Tab样式。以下示例代码供参考:

@Entry
@Component
struct Tabdemo {
  @State tabArray: Array<number> = [0, 1, 2]
  @State focusIndex: number = 0
  @State index: number = 0
  private controller: TabsController = new TabsController()

  @Builder
  Tab(tabName: string, tabItem: number, tabIndex: number) {
    Column() {
      Text(tabName).fontSize(18)
    }
    .width(100)
    .height(40)
    .onClick(() => {
      this.controller.changeIndex(tabIndex)
      this.focusIndex = tabIndex
    })
    .backgroundColor(tabIndex === this.focusIndex ? "#ffffffff" : "#ffb7b7b7")
    .justifyContent(FlexAlign.Center)
  }

  build() {
    Column() {
      Row() {
        //页签展示
        Column() {
          Scroll() {
            Column({ space: 10 }) {
              ForEach(this.tabArray, (item: number, index: number) => {
                this.Tab("页面" + item, item, index)
              })
            }
            //设置从顶部排列
            .justifyContent(FlexAlign.Start)
            .height('100%')
          }
          .scrollable(ScrollDirection.Vertical)
        }
        .width('30%')
        .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('#ffbdf38d')
          })
        }
        .barHeight(0)
        // .animationDuration(100)
        .onChange((index: number) => {
          console.log('tag change')
          this.focusIndex = index
        })
        .width('70%')
      }
    }.height('100%')
  }
}
分享
微博
QQ
微信
回复
1天前
相关问题
HarmonyOS 图片+文字排列问题
75浏览 • 1回复 待解决
视频列表不规则排列
735浏览 • 1回复 待解决
如何实现文本竖向排列
2518浏览 • 1回复 待解决
沉浸式图文排列布局如何实现
375浏览 • 1回复 待解决
HarmonyOS tabstabBar怎么居左
569浏览 • 1回复 待解决