- December 17, 2024
- Mins Read
CardsLayout is a lightweight Collection Layout.
You can use CocoaPods to install CardsLayout
by adding it to your Podfile
:
platform :ios, ‘9.0’
use_frameworks!
pod ‘CardsLayout’
import CardsLayout
CardsCollectionViewLayout
file to your projectcollectionView
:
collectionView.collectionViewLayout = CardsCollectionViewLayout()
collectionView.isPagingEnabled = true
collectionView.showsHorizontalScrollIndicator = false
A vertical stackview which takes subviews with different widths and adds them to it's rows with paddings, spacings etc.
AudioManager is a Swift package that provides a modular and easy-to-use interface for implementing audio feedback in your applications. It ...