react-splide icon indicating copy to clipboard operation
react-splide copied to clipboard

on android swipes are not working

Open rgsk opened this issue 3 years ago • 0 comments

Checks

  • [X] Not a duplicate.
  • [X] Not a question, feature request, or anything other than a bug report directly related to React Splide. Use Discussions for these topics: https://github.com/Splidejs/splide/discussions

Version

0.7.8

Description

swipes are not working on android google chrome and brave browser.

import { Splide, SplideSlide } from '@splidejs/react-splide'
const SplidePractice: React.FC<ISplidePracticeProps> = ({ images }) => {
  return (
    <div>
      <Splide
        aria-label="carousel"
        // onMove={(e, ind: number) => setActive(ind)}
        options={{
          autoplay: false,
          drag: true,
        }}
      >
        {images.map((image, i) => (
          <SplideSlide key={'SplideSlide_' + i}>
            <img src={image} alt={image} />
          </SplideSlide>
        ))}
      </Splide>
    </div>
  )

Reproduction Link

No response

Steps to Reproduce

...

Expected Behaviour

swipe should work

rgsk avatar Nov 17 '22 06:11 rgsk