Files
letro-ios/ElementX/Sources/Other/ElementNavigationController.swift
2022-07-06 16:01:50 +01:00

17 lines
380 B
Swift

//
// ElementNavigationController.swift
// ElementX
//
// Created by Ismail on 20.06.2022.
// Copyright © 2022 Element. All rights reserved.
//
import UIKit
class ElementNavigationController: UINavigationController {
override func viewWillLayoutSubviews() {
super.viewWillLayoutSubviews()
navigationBar.topItem?.backButtonDisplayMode = .minimal
}
}