Last active
August 7, 2017 14:50
-
-
Save gwennguihal/2be85e369353857631d2774a37a15dc8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import Collor | |
| class ExampleSectionDescriptor: CollectionSectionDescribable { | |
| func sectionInset(_ collectionView:UICollectionView) -> UIEdgeInsets { | |
| return UIEdgeInsets(top: 0, left: 0, bottom: 0, right: 0) | |
| } | |
| func minimumLineSpacing(_ collectionView: UICollectionView, layout: UICollectionViewFlowLayout) -> CGFloat { | |
| return 15 | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment