fixed FAB button in Home screen

This commit is contained in:
Gil Eluard
2021-09-22 22:57:21 +02:00
parent eacb147776
commit b6801527a1
2 changed files with 14 additions and 2 deletions

View File

@@ -41,6 +41,8 @@ class HomeViewControllerWithBannerWrapperViewController: MXKViewController, Bann
override func viewDidLoad() {
super.viewDidLoad()
homeViewController.willMove(toParent: self)
view.backgroundColor = .clear
stackView = UIStackView()
@@ -48,8 +50,8 @@ class HomeViewControllerWithBannerWrapperViewController: MXKViewController, Bann
stackView.distribution = .fill
stackView.alignment = .fill
view.vc_addSubViewMatchingParent(stackView)
view.vc_addSubViewMatchingParentSafeArea(stackView)
addChild(homeViewController)
stackView.addArrangedSubview(homeViewController.view)
homeViewController.didMove(toParent: self)