Skip to content

Commit 3dcb8d8

Browse files
committed
#6 Updated documentation
1 parent 9fa75e7 commit 3dcb8d8

2 files changed

Lines changed: 9 additions & 1 deletion

File tree

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -613,7 +613,15 @@ class ViewController: ScrollStackController, ScrollStackControllerDelegate {
613613
func scrollStackRowDidBecomeHidden(_ stackView: ScrollStack, row: ScrollStackRow, index: Int, state: ScrollStack.RowVisibility) {
614614
// Row did become partially or entirely invisible.
615615
}
616-
616+
617+
func scrollStackDidUpdateLayout(_ stackView: ScrollStack) {
618+
// This function is called when layout is updated (added, removed, hide or show one or more rows).
619+
}
620+
621+
func scrollStackContentSizeDidChange(_ stackView: ScrollStack, from oldValue: CGSize, to newValue: CGSize) {
622+
// This function is called when content size of the stack did change (remove/add, hide/show rows).
623+
}
624+
617625
}
618626
```
619627

0 commit comments

Comments
 (0)