I want to have serveral sections in my UICollectionView. In one there should be items that hold a text. With a 'classic' collectionView approach The count of items that are displayed in the same row is dependend on the item width. The collectionView only adds a new line if the items wont fit into the same row. So some rows may have 5 items and some have 3. Like so:
When I use compositional Layout I need to specify the item count. And actually I want the collection view to take care about the count, for serveral sections.
Is that even possible with UICollectionViewCompositionalLayout ?
