Feature Request:
Adding a property something like "ScrollDirection = LeftOnly|RightOnly|Both(default)"
I've read in some old threads of several ways to handle this:
Why is such a feature important?
Imagine you want users to fill a sectioned form where they should not go to previous ones or maybe a game where you don't want user to peek previous cards.
thanks
+1
I feel this is important
Did you ever find a workaround to this?
Hello everybody
Just end with some hacky workaround
I have tried to work with dynamic data array (according to some business logic, I need to block swipe to the first page). It also works for cases, when you are blocked with some actions on the current page (agreements, fields validation, etc), so you are not allowed to move forward.
So at first active page my data list looks like:
[
{ index: 0, page: 'Disclamer' },
{ index: 1, page: 'Title 1' },
{ index: 2, page: 'Title 2' },
{ index: 3, page: 'Title 3' },
....
]
When on second page it will be slice(1):
[
{ index: 1, page: 'Title 1' },
{ index: 2, page: 'Title 2' },
{ index: 3, page: 'Title 3' },
....
]
It works absolutely as expected for iOS builds, but as for Android you will not be able to see correct render, as the second page will disappear till you click on page once again.
So it should be added another approach to render first (limited element). I've added another wrapper ScrollView to Carousel and lock scrollEnabled right after swiping to second page:
<ScrollView
horizontal
pagingEnabled
showsHorizontalScrollIndicator={false}
onScrollBeginDrag={this.handleChangeLayout}
scrollEnabled={activePageIndex === 0}
>
<CarouselItem {...data} />
<Carousel
data={data.slice(1)}
renderItem={this.renderItem}
/>
</ScrollView>
Hope it will handle someone's problem
+1
+1
Most helpful comment
+1
I feel this is important