ScrollStackController
ScrollStackController copied to clipboard
🧩 Easy scrollable layouts in UIKit - an UIStackView which scroll and uses root views of child view controllers.
I have created a simple UIViewController which contains a UICollectionView display a list of 10 object. The UICollectionView has a flow layout with vertical direction. When putting the child VC...
### Default value initialization Default value of `rowHighlightColor` should set as `ScrollStack.defaultRowHighlightColor`. **ScrollStackRow.swift** line 83: ```swift /// Row highlight color. open var rowHighlightColor = ScrollStack.defaultRowColor /// Row background color. open...
When I set a default callback for `onTap` property on `ScrollStackRow` instances. And set `ScrollStackRowHighlightable` for `UIViewController` instance, row highlight color is not work. ### Example Code I tested it...
This PR adresses an issue that causes calls to the `ScrollStackControllerDelegate` methods - `scrollStackRowDidBecomeVisible(_:row:index:state:)` - `scrollStackRowDidBecomeHidden(_:row:index:state:)` before the completion of the `ScrollStack` layout process, when each rows still don't have...
It's not removing all the indexes A workaround for me is to use a loop on a unit removeRow ```swift removeRow(index: Int, animated: Bool = false) -> UIViewController? { ```