mirror of
https://github.com/facebookincubator/QuickLayout
synced 2026-04-21 13:37:22 +00:00
Fix typo in example code (#19)
Summary: The original code used a `leading` symbol that doesn't exist. The right one is `.leading`. Pull Request resolved: https://github.com/facebookincubator/QuickLayout/pull/19 Reviewed By: yannickl Differential Revision: D92039987 Pulled By: constantine-fry fbshipit-source-id: 7d975c1fa082680b6cf2f8887cffa2e036961bd6
This commit is contained in:
parent
ac6a40b9e3
commit
d1151e5648
1 changed files with 1 additions and 1 deletions
|
|
@ -17,7 +17,7 @@ class MyCellView: UIView {
|
|||
|
||||
var body: Layout {
|
||||
HStack {
|
||||
VStack(alignment: leading) {
|
||||
VStack(alignment: .leading) {
|
||||
titleLabel
|
||||
Spacer(4)
|
||||
subtitleLabel
|
||||
|
|
|
|||
Loading…
Reference in a new issue