Giter Site home page Giter Site logo

Comments (2)

alessign avatar alessign commented on July 17, 2024 1

Splendid, that method worked! Thank you. And you're right, removing == true has the same result...cheers

from verticalcardswiper.

JoniVR avatar JoniVR commented on July 17, 2024

Hi @alessign,

I'm currently working on making this framework developer friendly and easy to use to allow these kinds of things (see development branch) and I haven't tested it to work on iPad, that's planned for the future.

However, if you need a solution to do this now, I'd suggest changing some things in the sizeForItem function of the UICollectionViewDelegateFlowLayout extension inside HomeVC.

extension HomeVC: UICollectionViewDelegateFlowLayout {
    
    func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
        
        let cellWidth = collectionView.frame.size.width - (sideInset * 2)
        let cellHeight = collectionView.frame.size.height - flowLayout.minimumLineSpacing - visibleNextCardHeight - topInset
        
        // set cellHeight in the custom flowlayout, we use this for paging calculations.
        flowLayout.cellHeight = cellHeight
        
        if swipeAbleArea == nil {
            // Calculate and set the swipeAbleArea. We use this to determine wheter the cell can be swiped to the sides or not.
            let swipeAbleAreaOriginY = collectionView.frame.origin.y + collectionView.contentInset.top
            swipeAbleArea = CGRect(x: 0, y: swipeAbleAreaOriginY, width: view.frame.width, height: cellHeight)
            centerX = swipeAbleArea.width/2
        }
        return CGSize(width: cellWidth, height: cellHeight)
    }
}

more specifically, you should change the size of the cells in these lines:

 let cellWidth = collectionView.frame.size.width - (sideInset * 2)
 let cellHeight = collectionView.frame.size.height - flowLayout.minimumLineSpacing - visibleNextCardHeight - topInset

So for example, if you only want the cells to take up half the width of the collectionview on iPad, you could do something like:

var cellWidth = nil

if Device.isIpad() {
    cellWidth = collectionView.frame.size.width/2 - (sideInset * 2)
} else {
    cellWidth = collectionView.frame.size.width - (sideInset * 2)
}

Same goes for the height.
(also, you don't really need the == true part in your if statement, it's the same thing without it)

This should in theory solve your problem, but I haven't tested this, so let me know if it doesn't.

Best regards,
Joni

from verticalcardswiper.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.