Files
yattee/Yattee/Views/Settings/RemoteControlSettingsView.swift
Arkadiusz Fal 8464464199 Fix locales
2026-02-09 00:13:46 +01: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)
}