HarmonyOS tab名称很少的时候,比如就2个现在也是居中,希望居左展示

HarmonyOS tab名称很少的时候,比如就2个现在也是居中,希望居左展示。

HarmonyOS
2024-10-22 11:03:42
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
superinsect

可参考:

@Entry  
@Component  
struct Tabs_left {  
  @State tabArray: Array<number> = [0, 1]  
  @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) {  
    Column({ space: 20 }) {  
      Text(tabName).fontSize(18)  
      Image($r('app.media.icon')).width(20).height(20)  
    }  
    .width(100)  
    .height(60)  
    .borderRadius({ topLeft: 10, topRight: 10 })  
    .onClick(() => {  
      this.controller.changeIndex(tabIndex)  
      this.focusIndex = tabIndex  
    })  
    .backgroundColor(tabIndex === this.focusIndex ? "#ffffffff" : "#ffb7b7b7")  
  }  
  
  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('80%')  
          .backgroundColor("#ffb7b7b7")  
  
        }  
        .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%')  
  }  
}
分享
微博
QQ
微信
回复
2024-10-22 17:12:25
相关问题
HarmonyOS tabstabBar怎么
358浏览 • 1回复 待解决
Tabs如何才能显示呢
858浏览 • 1回复 待解决
Tab组件,无法对齐该怎么处理?
244浏览 • 1回复 待解决
如何固定应用窗口大小并居中展示
2143浏览 • 1回复 待解决
mysql连接问题
2101浏览 • 1回复 待解决