Skip to content

Commit

Permalink
Merge pull request #46 from makeen-project/develop
Browse files Browse the repository at this point in the history
Fixed Settings navigation issues
  • Loading branch information
vinguthh authored Aug 3, 2023
2 parents f8882cb + 4d48a63 commit acf14a4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ private extension SettingsCoordinator {

extension SettingsCoordinator: SettingsNavigationDelegate {
func showNextScene(type: SettingsCellType) {
navigationController.navigationBar.isHidden = false
switch type {
case .units:
showUnitScene()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ final class SettingsVC: UIViewController {
static let horizontalOffset: CGFloat = 16
}

weak var delegate: SettingsNavigationDelegate?
var delegate: SettingsNavigationDelegate?

private var headerTitle: LargeTitleLabel = {
let label = LargeTitleLabel(labelText: StringConstant.settigns)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import UIKit
final class MapStyleBuilder {
static func create() -> MapStyleVC {
let controller = MapStyleVC()
controller.hidesBottomBarWhenPushed = true
let viewModel = MapStyleViewModel()
controller.viewModel = viewModel
return controller
Expand Down

0 comments on commit acf14a4

Please sign in to comment.