mirror of
https://github.com/yattee/yattee.git
synced 2026-02-20 01:39:46 +00:00
28 lines
546 B
Swift
28 lines
546 B
Swift
//
|
|
// RemoteControlSettingsView.swift
|
|
// Yattee
|
|
//
|
|
// Settings for remote control configuration.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct RemoteControlSettingsView: View {
|
|
var body: some View {
|
|
RemoteControlContentView(navigationStyle: .link)
|
|
.navigationTitle(String(localized: "remoteControl.title"))
|
|
#if os(iOS)
|
|
.navigationBarTitleDisplayMode(.inline)
|
|
#endif
|
|
}
|
|
}
|
|
|
|
// MARK: - Preview
|
|
|
|
#Preview {
|
|
NavigationStack {
|
|
RemoteControlSettingsView()
|
|
}
|
|
.appEnvironment(.preview)
|
|
}
|