func collectionView()

in DemoProjects/NowPlayingView/NowPlayingView/ContentCollectionViewController.swift [92:95]


    func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
        let width = collectionView.frame.width / 2.0
        return CGSize(width: width, height: width)
    }