Files
yattee/Yattee/Views/Settings/RemoteControlSettingsView.swift
2026-02-08 18:33:56 +01:00

28 lines
522 B
Swift

//
// RemoteControlSettingsView.swift
// Yattee
//
// Settings for remote control configuration.
//
import SwiftUI
struct RemoteControlSettingsView: View {
var body: some View {
RemoteControlContentView(navigationStyle: .link)
.navigationTitle("Remote Control")
#if os(iOS)
.navigationBarTitleDisplayMode(.inline)
#endif
}
}
// MARK: - Preview
#Preview {
NavigationStack {
RemoteControlSettingsView()
}
.appEnvironment(.preview)
}