mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
Add simulated refresh interval picker
This commit is contained in:
35
iOS/Settings/SettingsRefreshSelectionView.swift
Normal file
35
iOS/Settings/SettingsRefreshSelectionView.swift
Normal file
@@ -0,0 +1,35 @@
|
||||
//
|
||||
// SettingsRefreshSelectionView.swift
|
||||
// NetNewsWire-iOS
|
||||
//
|
||||
// Created by Maurice Parker on 9/16/19.
|
||||
// Copyright © 2019 Ranchero Software. All rights reserved.
|
||||
//
|
||||
|
||||
import SwiftUI
|
||||
|
||||
struct SettingsRefreshSelectionView: View {
|
||||
|
||||
@Environment(\.presentationMode) var presentation
|
||||
@Binding var selectedInterval: RefreshInterval
|
||||
|
||||
var body: some View {
|
||||
Form {
|
||||
ForEach(RefreshInterval.allCases) { interval in
|
||||
Button(action: {
|
||||
self.selectedInterval = interval
|
||||
self.presentation.wrappedValue.dismiss()
|
||||
}) {
|
||||
HStack {
|
||||
Text(interval.description())
|
||||
Spacer()
|
||||
if interval == self.selectedInterval {
|
||||
Image(systemName: "checkmark")
|
||||
}
|
||||
}
|
||||
}.buttonStyle(VibrantButtonStyle(alignment: .leading))
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user