fix: app enter background break profile header layout issue
This commit is contained in:
parent
3bdd9dc4aa
commit
8efaf38395
|
@ -408,7 +408,13 @@ extension ProfileHeaderView {
|
|||
override func traitCollectionDidChange(_ previousTraitCollection: UITraitCollection?) {
|
||||
super.traitCollectionDidChange(previousTraitCollection)
|
||||
|
||||
// workaround enter background breaking the layout issue
|
||||
switch UIApplication.shared.applicationState {
|
||||
case .active:
|
||||
updateLayoutMargins()
|
||||
default:
|
||||
break
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue