-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathNavigationView-extension.swift
37 lines (31 loc) · 1.19 KB
/
NavigationView-extension.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//
// NavigationView-extension.swift
// NavigationView-extension
//
// Created by Philipp on 25.08.21.
//
import SwiftUI
#if TARGET_IOS_MAJOR_13
@available(iOS, introduced: 13, obsoleted: 14.0,
message: "Backport not necessary as of iOS 14", renamed: "SwiftUI.View")
extension View {
/// Sets the title and display mode in the navigation bar for this view.
@inlinable public func navigationBarTitle<S>(
_ title: S, displayMode: NavigationBarItem.TitleDisplayMode
) -> some View where S: StringProtocol {
navigationBarTitle(Text(title), displayMode: displayMode)
}
/// Configures the view's title for purposes of navigation.
@inlinable public func navigationTitle(_ title: Text) -> some View {
navigationBarTitle(title)
}
/// Configures the view's title for purposes of navigation,
@inlinable public func navigationTitle(_ titleKey: LocalizedStringKey) -> some View {
navigationBarTitle(titleKey)
}
/// Configures the view's title for purposes of navigation, using a string.
@inlinable public func navigationTitle<S>(_ title: S) -> some View where S: StringProtocol {
navigationBarTitle(title)
}
}
#endif