Files
yattee/Yattee/Views/Settings/RemoteControlSettingsView.swift
Arkadiusz Fal 425a2c590d Fix locales
2026-04-18 20:37:25 +02:00

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)
}