mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
19 lines
329 B
Swift
19 lines
329 B
Swift
import SwiftUI
|
|
|
|
public extension ToolbarItemPlacement {
|
|
static var barLeading: ToolbarItemPlacement {
|
|
#if os(iOS)
|
|
.navigationBarLeading
|
|
#else
|
|
.automatic
|
|
#endif
|
|
}
|
|
|
|
static var barTrailing: ToolbarItemPlacement {
|
|
#if os(iOS)
|
|
.navigationBarTrailing
|
|
#else
|
|
.automatic
|
|
#endif
|
|
}
|
|
}
|