Components

Carousel(iOS)

Grouped content that is navigated horizontally.

Summary

CarouselLayout is our custom subclass of UICollectionViewFlowLayout that facilitates creation of single line carousels Carousel

Public API

See UICollectionViewFlowLayout

Usage

CarouselLayout can be used to lay out a collection view

import Thumbprint
/* ... */
let carouselLayout = CarouselLayout()
let collectionView = UICollectionView(frame: .zero, collectionViewLayout: carouselLayout)
// Properties can be modified just like a regular UICollectionViewFlowLayout
carouselLayout.sectionInset.bottom = Space.three
carouselLayout.sectionInset.left = Space.four
carouselLayout.sectionInset.right = Space.four
Was this page helpful?

We use this feedback to improve the quality of our documentation.