HarmonyOS tab组件有超出边界禁止滑动的能力吗?如果有怎么实现?

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

HarmonyOS UX标准所有滑动都应有过界回弹效果, tabs组件边缘滑动效果是符合UX标准的

可以给边缘tabContent添加手势

参考demo

// xxx.ets
@Entry
@Component
struct TabsExample {
  @State fontColor: string = '#182431'
  @State selectedFontColor: string = '#007DFF'
  @State currentIndex: number = 0
  private controller: TabsController = new TabsController()
  private panOption1: PanGestureOptions = new PanGestureOptions({ direction: PanDirection.Right })
  private panOption2: PanGestureOptions = new PanGestureOptions({ direction: PanDirection.Left })

  @Builder tabBuilder(index: number, name: string) {
    Column() {
      Text(name)
        .fontColor(this.currentIndex === index ? this.selectedFontColor : this.fontColor)
        .fontSize(16)
        .fontWeight(this.currentIndex === index ? 500 : 400)
        .lineHeight(22)
        .margin({ top: 17, bottom: 7 })
      Divider()
        .strokeWidth(2)
        .color('#007DFF')
        .opacity(this.currentIndex === index ? 1 : 0)
    }.width('100%')
  }

  build() {
    Column() {
      Tabs({ barPosition: BarPosition.Start, controller: this.controller }) {
        TabContent() {
          Column().width('100%').height('100%').backgroundColor('#00CB87')
        }.tabBar(this.tabBuilder(0, 'green'))
        // 左右拖动触发该手势事件
        .gesture(
          PanGesture(this.panOption1)
            .onActionStart((event?: GestureEvent) => {
              console.info('Pan start')
            })
            .onActionUpdate((event?: GestureEvent) => {
              if (event) {
              }
            })
            .onActionEnd(() => {
              console.info('Pan end')
            })
        )

        TabContent() {
          Column().width('100%').height('100%').backgroundColor('#007DFF')
        }.tabBar(this.tabBuilder(1, 'blue'))

        TabContent() {
          Column().width('100%').height('100%').backgroundColor('#FFBF00')
        }.tabBar(this.tabBuilder(2, 'yellow'))

        TabContent() {
          Column().width('100%').height('100%').backgroundColor('#E67C92')
}.tabBar(this.tabBuilder(3, 'pink'))
        // 左右拖动触发该手势事件
        .gesture(
          PanGesture(this.panOption2)
            .onActionStart((event?: GestureEvent) => {
              console.info('Pan start')
            })
            .onActionUpdate((event?: GestureEvent) => {
              if (event) {
              }
            })
            .onActionEnd(() => {
              console.info('Pan end')
            })
        )
      }

      .vertical(false)
      .barMode(BarMode.Fixed)
      .barWidth(360)
      .barHeight(56)
      .animationDuration(400)
      .onChange((index: number) => {
        this.currentIndex = index
      })
      .width(360)
      .height(296)
      .margin({ top: 52 })
      .backgroundColor('#F1F3F5')
    }.width('100%')
  }
}
分享
微博
QQ
微信
回复
1天前
相关问题
HarmonyOS 布局超出边界,无法约束住
19浏览 • 1回复 待解决
HarmonyOS 组件List如何禁止滑动
23浏览 • 1回复 待解决
HarmonyOS tab组件页签该怎么实现
59浏览 • 1回复 待解决
HarmonyOS 超出隐藏怎么实现
33浏览 • 1回复 待解决
HarmonyOS 首页滑动置顶组件
4浏览 • 1回复 待解决