In Ionic, how to disable vertical scrolling while swiping left?

后端 未结 4 799
野趣味
野趣味 2021-02-06 18:21

I am making a Ionic mobile app, whose main view is a vertical list of cards. I want each card to be \"swipable\", in the same way as Google Now cards.

I started to imple

4条回答
  •  一整个雨季
    2021-02-06 18:33

    Maybe you can try inspiration by this example based on CSS:

    .no-scroll{
      pointer-events: none;
    }
    

    For example you could add the no-scroll class (using ngClass) during swipe-left operation.

提交回复
热议问题