as title says I need a uicollectionview which is able to paginate in both directions as shown in the image.
Each square is the ios screen and the arrows indicate where pagination is allowed. UICollectionViewFlowLayout allows only scrolling and pagination in one direction. THe middle screens are where the main information is presented and swiping should only be allowed horizontally for those, while the others display extra information. Each column represent a specific item from a list, the dots indicate that my collection is dynamic based on the length of the list. In this example there are only 3 items displayed.
How would i go about solving this problem? Prefereably solutions in swift
I ended up building it with a UICollectionView inside another UICollectionView