dohooo / react-native-reanimated-carousel

🎠 React Native swiper/carousel component, fully implemented using reanimated v2, support to iOS/Android/Web. (Swiper/Carousel)
https://react-native-reanimated-carousel.vercel.app
MIT License
2.85k stars 329 forks source link

Installing Latest package - The components folder is missing #681

Closed sahad00 closed 2 months ago

sahad00 commented 2 months ago
Screenshot 2024-09-19 at 2 02 54 AM

I can't find the Pagination Component

dosubot[bot] commented 2 months ago

Hey @sahad00! I'm here to help you with any bugs, questions, or contributions. Let's tackle this issue together!

The components folder is missing and the Pagination Component is not found in your React Native project because the react-native-reanimated-carousel package has only recently added the Pagination Component in a patch update. Ensure you have updated to the latest version of the package to access the new component.

---
"react-native-reanimated-carousel": patch
---

Adds Pagination Component

Make sure to update your package to the latest version to include the new components [1].

To continue talking to Dosu, mention @dosu.

sahad00 commented 2 months ago

"react-native-reanimated-carousel": "^3.5.1"

this is my version which is installed @dosu

nmassey commented 2 months ago

Pagination is only available in version 4. It was introduced in v4.0.0-alpha.11.

dosubot[bot] commented 2 months ago

The Pagination Component was added in version 4.0.0-alpha.11 of "react-native-reanimated-carousel". The version you have, "^3.5.1", does not include the Pagination Component. You need to update to at least version 4.0.0-alpha.11 to use the Pagination Component.

Update your package.json to:

{
  "dependencies": {
    "react-native-reanimated-carousel": "^4.0.0-alpha.11"
  }
}

Then run npm update or yarn upgrade to get the latest version [1][2].

To continue talking to Dosu, mention @dosu.

sahad00 commented 2 months ago

@nmassey the version seems to be on prerelease, it it good to use it in production currently ?

captainalbert commented 2 months ago

@nmassey the version seems to be on prerelease, it it good to use it in production currently ?

I am using the latest prerelease version. v4.0.0-canary.15

I have the same question if this version is safe to be used on production level apps?

dohooo commented 2 months ago

it it good to use it in production currently I have the same question if this version is safe to be used on production level apps?

I'm going to ship the prod ready version before the end of this month.

Habeeb-007 commented 1 month ago

Hi dohoo, may we expect v4 by the end of this month? Thank you bro!