We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This is the sample structure:
TabView { VStack { ACarousel(items) { item in ItemView(item) .onTapGesture { "do something" } } }
VStack {...} VStack {...} VStack {...} } .tabViewStyle(.page(indexDisplayMode: .never))
I want to swipe the carousel item if i drag inside
The text was updated successfully, but these errors were encountered:
Hi, I had this issue too, did you fix it?
Sorry, something went wrong.
I cant fix it because the gesture is private, I cant set it to higher priority. Now I used another one ACarousel instead of TabView
like this: ACarousel(pages) { page in VStack { ...some views ACarousel(items) { item in ItemView(item) .onTapGesture { "do something" } } } }
Seem works! hope it can help you first
Thank you, let me try
No branches or pull requests
This is the sample structure:
TabView {
VStack {
ACarousel(items) { item in
ItemView(item)
.onTapGesture { "do something" }
}
}
VStack {...}
VStack {...}
VStack {...}
}
.tabViewStyle(.page(indexDisplayMode: .never))
I want to swipe the carousel item if i drag inside
The text was updated successfully, but these errors were encountered: