I'm working on a collection view that should look like this:
The scroll view works but I want to make my collection view peak the next item like in the screenshot, and when scrolling it scales the normal size of course.
I couldn't manage to do that with only enabling paging (of course).
Thank you all for any help!
Edit: This kinda helps what I want to achieve, but it still lacks scaling and does not work near good while scrolling.
func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumLineSpacingForSectionAt section: Int) -> CGFloat {
return -100
}
