Andre Stenvall
Andre Stenvall
Possible solution for https://github.com/linkedin/LayoutKit/issues/164
Playground code ```Swift import UIKit import PlaygroundSupport import LayoutKit let rootView = UIView(frame: CGRect(x: 0, y: 0, width: 320, height: 300)) rootView.backgroundColor = .white let fontDescriptor = UIFontDescriptor.preferredFontDescriptor(withTextStyle: .body) let...
Hi, As I understand it, you should be able to use the same `viewReuseId` for different layouts as long as they create the same UIView class and configure the same...
Hi, The current solution for updating an `UICollectionViewCell` using reloadItems with `BatchUpdates` will dequeue a new cell from `UICollectionView` and apply the generated views from `LayoutArrangement` on that cell. This...