HarmonyOS Refresh支持swiper吗

使用swiper做了一个上下滑动页面,需要有下拉刷新功能,貌似refrsh不支持swiper

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

参考demo:

@Entry
@Component
struct SwiperItemLeak {
  private swiperController: SwiperController = new SwiperController()
  private curSwiperIndex = 0;
  private list: number[] = []
  @State isStopSwiperSlide: boolean = false;
  @State positionY: number = 0;
  private isRefresh: boolean = false;

  aboutToAppear(): void {
    for (let i = 1; i <= 10; i++) {
      this.list.push(i);
    }
  }

  build() {
    Stack({ alignContent: Alignment.TopStart }) {
      Text(this.positionY.toString())
        .width('100%')
        .height('10%')
        .textAlign(TextAlign.Center)
        .fontSize(30)
      Swiper(this.swiperController) {
        ForEach(this.list, (item: number) => {
          Text(item.toString())
            .width('100%')
            .height('100%')
            .backgroundColor(0xAFEEEE * ((item + 1) / 0x0f))
            .textAlign(TextAlign.Center)
            .fontSize(30)
        })
      }
      .vertical(true)
      .width("100%")
      .height("100%")
      .cachedCount(3)
      .index(0)
      .autoPlay(false)
      .indicator(false)
      .effectMode(EdgeEffect.None)
      .loop(false)
      .duration(100)
      .disableSwipe(this.isStopSwiperSlide)
      .displayCount(1)
      .itemSpace(0)
      .curve(Curve.Linear)
      .backgroundColor(Color.Red)
      .position({ y: this.positionY })
      .onChange((index: number) => {
        console.info(index.toString())
        this.curSwiperIndex = index;
      })
      .parallelGesture(
        PanGesture()
          .onActionStart((event: GestureEvent) => {
          })
          .onActionUpdate((event: GestureEvent) => {
            if (event && this.curSwiperIndex == 0) {
              if (event.offsetY > 0) {
                this.positionY = event.offsetY;
                this.isStopSwiperSlide = true;
                this.isRefresh = true;
              }
              else {
                this.positionY = 0;
                this.isStopSwiperSlide = false;
                this.isRefresh = false;
              }
            }
          })
          .onActionEnd(() => {
            if (this.isRefresh) {
              setTimeout(() => {
                this.isStopSwiperSlide = false;
                this.positionY = 0;
                this.isRefresh = false;
              }, 1000);
            }
          })
      )
    }.width('100%').height("100%").backgroundColor(Color.Pink)
  }
}
分享
微博
QQ
微信
回复
2天前
相关问题
litewearable支持swiper
2548浏览 • 1回复 待解决
HarmonyOS Swiper支持动态修改数据
511浏览 • 1回复 待解决
Swiper的indicator后续会支持自定义
1944浏览 • 1回复 待解决
Swiper是否支持组件复用
761浏览 • 1回复 待解决
Refresh组件不支持设置nestedScroll属性
1946浏览 • 1回复 待解决
HarmonyOS Refresh + Web?
113浏览 • 0回复 待解决
HarmonyOS Refresh组件使用问题
34浏览 • 1回复 待解决
HarmonyOS 支持VPN
31浏览 • 1回复 待解决
HarmonyOS mask支持渐变
42浏览 • 1回复 待解决
HarmonyOS使用Refresh下拉刷新问题
893浏览 • 1回复 待解决
HarmonyOS Swiper组建使用
502浏览 • 1回复 待解决
HarmonyOS lottie支持url
351浏览 • 1回复 待解决
HarmonyOS 支持pag动画?
259浏览 • 1回复 待解决
HarmonyOS Refresh组件嵌套滑动冲突问题
1002浏览 • 1回复 待解决
HarmonyOS Text支持修改FontFamily
47浏览 • 1回复 待解决