| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- // LoopFollow
- // InfoDisplaySettingsView.swift
- import SwiftUI
- struct InfoDisplaySettingsView: View {
- @ObservedObject var viewModel: InfoDisplaySettingsViewModel
- var body: some View {
- Form {
- Section(header: Text("General")) {
- Toggle(isOn: Binding(
- get: { Storage.shared.hideInfoTable.value },
- set: { Storage.shared.hideInfoTable.value = $0 }
- )) {
- Text("Hide Information Table")
- }
- }
- Section(header: Text("Information Display Settings")) {
- ForEach(viewModel.infoSort, id: \.self) { sortedIndex in
- HStack {
- Text(viewModel.getName(for: sortedIndex))
- Spacer()
- Toggle("", isOn: Binding(
- get: { viewModel.infoVisible[sortedIndex] },
- set: { _ in
- viewModel.toggleVisibility(for: sortedIndex)
- }
- ))
- .labelsHidden()
- }
- }
- .onMove(perform: viewModel.move)
- }
- }
- .environment(\.editMode, .constant(.active))
- .onDisappear {
- NotificationCenter.default.post(name: NSNotification.Name("refresh"), object: nil)
- }
- .preferredColorScheme(Storage.shared.appearanceMode.value.colorScheme)
- .navigationBarTitle("Information Display Settings", displayMode: .inline)
- }
- }
|