I'm trying to print the image on fullscreen I used UICollectionViewDelegateFlowLayout here my code is
func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
let itemWidth = collectionView.bounds.width
let itemHeight = collectionView.bounds.height
return CGSize(width: itemWidth, height: itemHeight)
}
but it doesn't show the content on full screen it makes space from top and bottom