ScrollStackController icon indicating copy to clipboard operation
ScrollStackController copied to clipboard

🧩 Easy scrollable layouts in UIKit - an UIStackView which scroll and uses root views of child view controllers.

Results 5 ScrollStackController issues
Sort by recently updated
recently updated
newest added

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...