Post marked as solved
Click to stop watching this thread.
You have stopped watching this post. Click to start watching again.
Post marked as solved with 1 replies, 0 views
Replied In
CollectionViewListCell Indentation
Turns out I'm ****** and it's easy. Just set the value when you are configuring the cell in whatever cellForItemAt variant you are using.
func configureCell(_ cell: UICollectionViewListCellSubclass, indexPath: IndexPath, item: DataSourceItem) {
cell.titletext = "Cell Title"
cell.subtitleText = "1/2/2021"
cell.indentationLevel = 0 // or whatever
}