File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed
Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 77
88# Change Log
99
10+ ## [ 1.4.0] ( https://github.com/mirego/PinLayout/releases/tag/1.4.0 )
11+ #### Change
12+ * Add ** aspectRatio** methods:
13+ * Added by [Luc Dion](https://github.com/lucdion) in Pull Request [#84](https://github.com/mirego/PinLayout/pull/84)
14+
15+
1016## [ 1.3.2] ( https://github.com/mirego/PinLayout/releases/tag/1.3.2 )
1117#### Change
1218* Add ** aspectRatio** methods:
@@ -33,7 +39,7 @@ This method is particularly useful to set all margins using iOS 11 UIView.safeAr
3339
3440 For other types of views, this method as no impact.
3541 * Added by [Luc Dion](https://github.com/lucdion) in Pull Request [#84](https://github.com/mirego/PinLayout/pull/84)
36- *
42+
3743## [ 1.3.1] ( https://github.com/mirego/PinLayout/releases/tag/1.3.1 )
3844#### Change
3945* Add new margin method ` margin(_ insets: UIEdgeInsets) `
Original file line number Diff line number Diff line change @@ -1068,7 +1068,7 @@ Without `pinEdges()` margins rules would be applied and the view would be moved
10681068![ ] ( docs/pinlayout-margin-pinEdges-01.png )
10691069
10701070``` swift
1071- view.pin .left ().width (percent : 100 ).marginHorizontal (20 )
1071+ view.pin .left ().width (100 % ).marginHorizontal (20 )
10721072```
10731073
10741074
@@ -1079,7 +1079,7 @@ With `pinEdges()` the left and right margins are applied even if only the left a
10791079![ ] ( docs/pinlayout-margin-pinEdges-02.png )
10801080
10811081``` swift
1082- view.pin .left ().width (percent : 100 ).pinEdges ().marginHorizontal (20 )
1082+ view.pin .left ().width (100 % ).pinEdges ().marginHorizontal (20 )
10831083```
10841084
10851085<br >
You can’t perform that action at this time.
0 commit comments