tabs组件不支持前后设置其他组件,也不支持前后tabs设置margin属性

tabs组件不支持前后设置其他组件,也不支持前后tabs设置margin属性。

HarmonyOS
2024-06-03 23:52:44
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
唯你而画

可以使用自定义tabbar实现。

@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 
  // 单独的页签 
  @Builder 
  Tab(tabName: string, tabItem: number, tabIndex: number) { 
    Row({ space: 20 }) { 
      Text(tabName).fontSize(18) 
      Image($r('app.media.icon')).width(20).height(20) 
    } 
    .justifyContent(FlexAlign.Center) 
    .constraintSize({ minWidth: 35 }) 
    .width(100) 
    .height(30) 
    .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 }) { 
          Image($r('app.media.icon')).onClick(() => { 
          }).width(20).height(20) 
 
          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") 
 
          Image($r('app.media.icon')).onClick(() => { 
          }).width(20).height(20) 
 
        } 
        .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-06-04 22:43:43
相关问题
Refresh组件不支持设置nestedScroll属性
1951浏览 • 1回复 待解决
web组件不支持localstorage
831浏览 • 1回复 待解决
linear-gradient不支持start,end属性
850浏览 • 1回复 待解决
Image组件不支持读入沙盒内的图片
908浏览 • 1回复 待解决
Image组件不支持svg字符串显示
364浏览 • 1回复 待解决
http类不支持cancel方法
201浏览 • 1回复 待解决
HarmonyOS RN使用datetimePicker显示不支持
103浏览 • 1回复 待解决
鸿蒙NEXT版本,支不支持APK?
2853浏览 • 1回复 待解决
CustomDialog不支持自定义动画
485浏览 • 2回复 待解决
@BuilderParam 不支持普通class的变量
803浏览 • 1回复 待解决
HarmonyOS Span不支持n换行
18浏览 • 1回复 待解决
HarmonyOS image不支持mask吗
33浏览 • 1回复 待解决