ListKit icon indicating copy to clipboard operation
ListKit copied to clipboard

Support for UICollectionViewListLayout?

Open niklasgrewe opened this issue 3 years ago • 2 comments

Hi, thank you very much to simplify the process of defining and updating UICollectionView Compositional Layout 👍 Does ListKit also supports UICollectionView List Layout, which is available since iOS 14? I would be very happy about this because then we can use UIKit APIs for Swipe Actions and don't have to use libraries like SwipeCellKit...

maybe like this:

renderer.render {
    Section(id: Sections.main) {
        if todos.isEmpty {
            VGroup(width: .fractionalWidth(1.0), height: .estimated(30)) {
                EmptyComponent(title: "Add New Todo!")
            }
        } else {
            List(of: todos) { todo in
                TodoComponent(todo: todo) { [weak self] t in
                    self?.todos.removeAll(where: { $0 == t })
                }
            }
            .listAppearance(.insetGrouped)
        }
    }
}

List is the class to create a new UICollectionViewListLayout with an Anppearance . It would be nice, if List can support both custom cells and default UICollectionViewListCell with content and background configuration.

The following article is a good starting point: https://swiftsenpai.com/development/uicollectionview-list-basic/

Let me know what you think about it. Carbon uses UITableView, but since iOS 14, there is no need to do this, because you can do everthing with UICollectionView.

niklasgrewe avatar Nov 17 '21 17:11 niklasgrewe

Thanks for your great suggestion. I want to support UICollectionView List Layout but I think it will take some time. 😭

skyfe79 avatar Nov 19 '21 00:11 skyfe79

@skyfe79 Hi any news about it?

niklasgrewe avatar Jan 27 '22 14:01 niklasgrewe