session-ios/SessionUIKit/Components/StyledNavigationController.swift
Morgan Pretty 6eeb0ec7ac Fixed most of the styling issues raised during QA
Copy tweak
Added a toast when copying the sessionId or group URL (fixes to the toast UI as well)
Fixed the new conversation screen styling
Fixed the styling of the various attachment screens
Updated the buttons on the attachment screen to behave like the input view buttons
Removed the old OWSNavigationBar and OWSNavigationController (logic was buggy and not actually needed in most cases)
2022-09-30 18:22:28 +10:00

13 lines
362 B
Swift

// Copyright © 2022 Rangeproof Pty Ltd. All rights reserved.
import UIKit
public class StyledNavigationController: UINavigationController {
public override var preferredStatusBarStyle: UIStatusBarStyle {
return (
self.topViewController?.preferredStatusBarStyle ??
ThemeManager.currentTheme.statusBarStyle
)
}
}