Skip to content

Commit

Permalink
Merge pull request layoutBox#254 from wody-d/master
Browse files Browse the repository at this point in the history
Update README.md
  • Loading branch information
lucdion authored Oct 13, 2022
2 parents 55c50ec + b76d287 commit f69f250
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -454,20 +454,20 @@ Position the view above the specified view(s) and aligned it using the specified
**`below(of: [UIView], aligned: HorizontalAlignment)`**
Position the view below the specified view(s) and aligned it using the specified HorizontalAlignment. One or many relative views can be specified.

* **`before(of: UIView, aligned: HorizontalAlignment)`**:left_right_arrow:
**`before(of: [UIView], aligned: HorizontalAlignment)`**:left_right_arrow:
* **`before(of: UIView, aligned: VerticalAlignment)`**:left_right_arrow:
**`before(of: [UIView], aligned: VerticalAlignment)`**:left_right_arrow:
In LTR direction the view is positioned at the left of the specified view(s). In RTL direction the view is positioned at the right. One or many relative views can be specified.

* **`after(of: UIView, aligned: HorizontalAlignment)`**:left_right_arrow:
**`after(of: [UIView], aligned: HorizontalAlignment)`**:left_right_arrow:
* **`after(of: UIView, aligned: VerticalAlignment)`**:left_right_arrow:
**`after(of: [UIView], aligned: VerticalAlignment)`**:left_right_arrow:
In LTR direction the view is positioned at the right of the specified view(s). In RTL direction the view is positioned at the left. One or many relative views can be specified.

* **`left(of: UIView, aligned: VerticalAlignment)`**
**`left(of: [UIView], aligned: HorizontalAlignment)`**
**`left(of: [UIView], aligned: VerticalAlignment)`**
Position the view left of the specified view(s) and aligned it using the specified VerticalAlignment. Similar to `before(of:)`. One or many relative views can be specified.

* **`right(of: UIView, aligned: VerticalAlignment)`**
**`right(of: [UIView], aligned: HorizontalAlignment)`**
**`right(of: [UIView], aligned: VerticalAlignment)`**
Position the view right of the specified view(s) and aligned it using the specified VerticalAlignment. Similar to `after(of:)`. One or many relative views can be specified.


Expand Down

0 comments on commit f69f250

Please sign in to comment.