JWAutumn / ACarousel

A carousel view for SwiftUI | SwiftUI 旋转木马效果
MIT License
381 stars 78 forks source link

Scrolling issue, if the item view is scrollview #20

Open fso-msrl opened 1 year ago

fso-msrl commented 1 year ago

because my item content is too long, so I need to add the scrollview in the top level of my content view, like that:

ACarousel(pages) { page in ScrollView(.vertical) { VStack{...} } }

but if you scroll a little right-down, it will show around 10-20px padding in right side. I already set the space & headSpace to 0 also does not work.

how to fix it? thanks