Skip to content

Commit

Permalink
Bugfix: Content View Height Anchor (#30)
Browse files Browse the repository at this point in the history
* fix content height anchor for content view
* project file org
* bump podspec
  • Loading branch information
heyltsjay committed Apr 2, 2021
1 parent 79a6c36 commit 91289cc
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 12 deletions.
19 changes: 9 additions & 10 deletions Example/Pods/Pods.xcodeproj/project.pbxproj

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions Example/Stackable.xcworkspace/contents.xcworkspacedata

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion RPStackable.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
Pod::Spec.new do |s|
s.name = 'RPStackable'
s.module_name = "Stackable"
s.version = '0.1.3'
s.version = '0.1.4'
s.summary = 'Stackable is a delightful and declarative set of utilities for UIStackView.'

# This description is used to generate tags and improve search results.
Expand Down
2 changes: 1 addition & 1 deletion Stackable/ScrollingStackView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ open class ScrollingStackView: UIScrollView {
contentView.trailingAnchor.constraint(equalTo: trailingAnchor),
contentView.bottomAnchor.constraint(equalTo: bottomAnchor),

contentView.heightAnchor.constraint(greaterThanOrEqualTo: safeAreaLayoutGuide.heightAnchor),
contentView.heightAnchor.constraint(greaterThanOrEqualTo: layoutMarginsGuide.heightAnchor),
contentView.widthAnchor.constraint(equalTo: widthAnchor),
])

Expand Down

0 comments on commit 91289cc

Please sign in to comment.