Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

on android swipes are not working #60

Open
2 tasks done
rgsk opened this issue Nov 17, 2022 · 0 comments
Open
2 tasks done

on android swipes are not working #60

rgsk opened this issue Nov 17, 2022 · 0 comments
Labels
bug Something isn't working

Comments

@rgsk
Copy link

rgsk commented Nov 17, 2022

Checks

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 rgsk added the bug Something isn't working label Nov 17, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant