All Versions
15
Latest Version
Avg Release Cycle
25 days
Latest Release
908 days ago
Changelog History
Page 1
Changelog History
Page 1
-
v1.4.1 Changes
October 01, 2020๐ Released on 2020-10-01
๐ CHANGELOG
- โก๏ธ #14 [FIX] Cannot update the height of the ScrollStackRow's contentView because it does not receive scrollStackRowSizeForAxis() event when its layout di change
-
v1.4.0 Changes
September 25, 2020Released on 2020-09-25
๐ CHANGELOG
- โก๏ธ #13 Fixed an issue with separator visibility which is wrongly updated when
setRows/addRows
is called.isSeparatorHidden
ofScrollStackRow
is now a property of the row itself which is maintained regardless the order of the row (whenautoHideLastRowSeparator
is set). - ๐ฆ Compatibility with Swift Package Manager (SPM) 5.3
- โก๏ธ #13 Fixed an issue with separator visibility which is wrongly updated when
-
v1.3.3 Changes
June 05, 2020Released on : 2020-06-06
๐ CHANGELOG
- ๐ #12
ScrollStackRow
and associated controller are not deallocated once removed
- ๐ #12
-
v1.3.2
June 05, 2020 -
v1.3.1 Changes
April 21, 2020Released on : 2020-04-21
๐ CHANGELOG
- #11 reloadContentFromStackView() should be called before getting the new size of the row (askForCutomizedSizeOfContentView())
-
v1.3.0 Changes
January 26, 2020Released on : 2019-01-26
๐ CHANGELOG
- ๐ #10 Support for lightweight rows layouts using plain
UIView
instances (without associatedUIViewControllers
).
(This is especially useful when you don't have a complex logic in your views and you want to use ScrollStack to make custom layout and keep your code lightweight)
- ๐ #10 Support for lightweight rows layouts using plain
-
v1.2.3 Changes
January 14, 2020Released on : 2019-01-14
๐ CHANGELOG
- ๐ #9 Removed unnecessary call to
layoutIfNeeded()
inrowPadding
set property ofScrollStackRow
in order to prevent multiple layout call which may causes AL errors.
- ๐ #9 Removed unnecessary call to
-
v1.2.2 Changes
January 14, 2020Released on : 2019-01-14
๐ CHANGELOG
- ๐ #8 Fixed an issue with
removeRow
methods which does not actually remove the cell from stack.
- ๐ #8 Fixed an issue with
-
v1.2.1 Changes
January 12, 2020Released on : 2019-01-12
๐ CHANGELOG
- #7
contentSize
is not correctly dispatched toscrollStackContentSizeDidChange()
delegate function the first time you set content of the stack
- #7
-
v1.2.0 Changes
January 12, 2020Released on : 2019-01-12
๐ CHANGELOG
- #5 Added
rowPadding
property to setup the insets of thecontentView
property of theScrollStackRow
- โก๏ธ #6 Added two new methods in
ScrollStackControllerDelegate
protocol:scrollStackDidUpdateLayout()
to observer layout changes andscrollStackContentSizeDidChange()
to observe changes incontentSize
of the stack view.
- #5 Added