Questions tagged [react-native-snap-carousel]

66 questions
0
votes
0 answers

MapView inside a react-native-snap-carousel

i have implemented react-native-maps inside carousel view to show floor plans of a 2-floor building, and everything is working fine. Now when i try to call a function to re-centre the floor-plan image, first slide is not getting responsive to the…
0
votes
0 answers

React Native Snap Carousel Functional Component Issue

I'm using this snack as a template for implementing my own carousel component. This template is using Class Component and I converted it to a Functional…
Football52
  • 123
  • 3
  • 14
0
votes
2 answers

How can i display the following output in react native snap carousel

How can i display the following output in react native snap carousel { this._carousel = c;…
0
votes
0 answers

Is it possible to add a video instead of an image on react-native-snap-carousel?

I'm currently using react-native-snap-carousel's component. Is it possible to extend it to parallax video's? If there is no way to do that on react-native-snap-carousel please tell me about any alternative methods that can be used.
0
votes
1 answer

How do I add a carousel to a map that It only pops up when an icon on the map being touched in React Native react-native-snap-carousel

Normally in react native, carousel is nested inside the MapView component when you're trying to add a carousel to a map showing an array of images. But it always there when you load the activity covering some areas of the map. What I want is…
0
votes
1 answer

When user will click on back arrow image button progress bar indicator is not decrease in react native

I want to achieve this functionality When user will click on back arrow image button progress bar indicator will be decrease and it will show the previous questions in carousel. I am using 'react-native-snap-carousel' for display data of question…
0
votes
3 answers

How can I create multiple image carousels?

I am a little new to React Native, and I am trying to create a list of cards with Flatlist, I want to show several images for each card as a carousel, and I am trying to do it with react-native-snap-carousel, the problem is When I scroll a card, the…
xmi
  • 21
  • 1
  • 6
0
votes
2 answers

How can I implement snap carousel in Vertical direction?

I need to create List but using snap carousel component. But I am unable to do so.
Rushabh Gedam
  • 310
  • 1
  • 4
  • 11
0
votes
0 answers

how can i create carousel with z-index animate

I use react-native-snap-carousel and I want to have this style: but in android z-index cannot be animated. What should I do?
0
votes
2 answers

How to put text on the ParallaxImage

I am using react-native-snap-carousel. How can I have the text on the image?
Alvin
  • 8,219
  • 25
  • 96
  • 177
0
votes
1 answer

react-native-snap-carousel returns "Cannot read property 'concat' of undefined" when I use renderItme

I am learning React-Native and using react-native-snap-carousel in my project. I want to show some images but I got error Cannot read property 'concat' of undefined. Here is my code. const HomePage = (props) => { let imageList =…
0
votes
2 answers

How to write local image file path as a uri path

I want to convert the local image file path to the uri path so that in place of uri where a website is require i want to put the local image directory. I am showing the code below.. state = { search: '', images: [ …
Rajat Verma
  • 420
  • 1
  • 7
  • 19
0
votes
0 answers

React Native snap carousel - Swipe direction or scroll enabling with restrictions

I have implemented react native snap carousel. I have 4 forms in the carousel. The requirement is that if the form is valid then the user will be able to swipe to next but the user can swipe to left even if the form is invalid
user10253937
0
votes
0 answers

React-native snap carousel / virtualized list rendering item at index

I'm using react-native-snap-carousel to render a list of more than 100 items (this value can increase). When the carousel is rendered, the first 14 items are rendered. Then I need to user the onSnapTo method for an index which is out of the visible…
0
votes
1 answer

react-native-snap-corousel: How to call a function on item click

I want to call a function on clicking of an Item in corousel. below is my code. onPress(){ console.log("onPress"); } _renderItem({item, index}) { return (
Sagar
  • 484
  • 3
  • 10
  • 24