Post

Replies

Boosts

Views

Activity

Adding contentInset to the orthogonalScrollingBehavior section causes the penultimate cell to skip
I did UICollectionViewCompositionalLayout with orthogonal section with groupPagingCentered as follow: func neighborsRealitiesSection() -> NSCollectionLayoutSection { 	let itemSize = NSCollectionLayoutSize(widthDimension: .fractionalWidth(1), heightDimension: .fractionalHeight(1)) 	let item = NSCollectionLayoutItem(layoutSize: itemSize) 		 	let cellWidth = UIScreen.main.bounds.width / 3 + 1 	let groupSize = NSCollectionLayoutSize(widthDimension: .absolute(cellWidth), heightDimension: .absolute(cellWidth)) 	let group = NSCollectionLayoutGroup.vertical(layoutSize: groupSize, subitems: [item]) 		 	let section = NSCollectionLayoutSection(group: group) 	section.orthogonalScrollingBehavior = .groupPaging 		 	let inset = (UIScreen.main.bounds.width - cellWidth) / 2 	section.contentInsets = .init(top: 0, leading: inset, bottom: 0, trailing: inset) 		 	return section } If I adding the contentInsets to the section, collectionView won't stop scrolling on the penultimate cell. It will scrolling to the next cell. If I comment on contentInsets, it will be ok. Why does it happen? Does anybody have this problem?
1
0
862
Apr ’21