jellyflood/JellyfinPlayer/SettingsView.swift

30 lines
713 B
Swift

//
// SettingsView.swift
// JellyfinPlayer
//
// Created by Aiden Vigue on 4/29/21.
//
import SwiftUI
struct SettingsView: View {
@Binding var close: Bool;
var body: some View {
NavigationView() {
Text("SettingsView not implemented.")
.navigationBarTitle("Settings", displayMode: .inline)
.toolbar {
ToolbarItemGroup(placement: .navigationBarLeading) {
Button {
close = false
} label: {
HStack() {
Text("Back").font(.callout)
}
}
}
}
}
}
}