| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- //
- // ExpirationReminderSetupView.swift
- // OmniKit
- //
- // Created by Pete Schwamb on 5/17/21.
- // Copyright © 2021 LoopKit Authors. All rights reserved.
- //
- import SwiftUI
- import LoopKitUI
- struct ExpirationReminderSetupView: View {
- @State var expirationReminderDefault: Int = 2
-
- public var valueChanged: ((_ value: Int) -> Void)?
- public var continueButtonTapped: (() -> Void)?
- public var cancelButtonTapped: (() -> Void)?
- var body: some View {
- GuidePage(content: {
- VStack(alignment: .leading, spacing: 15) {
- Text(LocalizedString("The App notifies you in advance of Pod expiration.\n\nScroll to set the number of hours advance notice you would like to have.", comment: "Description text on ExpirationReminderSetupView")).fixedSize(horizontal: false, vertical: true)
- Divider()
- ExpirationReminderPickerView(expirationReminderDefault: $expirationReminderDefault, collapsible: false, showingHourPicker: true)
- .onChange(of: expirationReminderDefault) { value in
- valueChanged?(value)
- }
- }
- .padding(.vertical, 8)
- }) {
- VStack {
- Button(action: {
- continueButtonTapped?()
- }) {
- Text(LocalizedString("Next", comment: "Text of continue button on ExpirationReminderSetupView"))
- .actionButtonStyle(.primary)
- }
- }
- .padding()
- }
- .navigationBarTitle(LocalizedString("Expiration Reminder", comment: "navigation bar title for expiration reminder"), displayMode: .automatic)
- .navigationBarHidden(false)
- .toolbar {
- ToolbarItem(placement: .navigationBarTrailing) {
- Button(LocalizedString("Cancel", comment: "Cancel button title"), action: {
- cancelButtonTapped?()
- })
- }
- }
- }
- }
- struct ExpirationReminderSetupView_Previews: PreviewProvider {
- static var previews: some View {
- ExpirationReminderSetupView()
- }
- }
|