-
Notifications
You must be signed in to change notification settings - Fork 0
/
RegistrarRemedio.swift
87 lines (75 loc) · 2.66 KB
/
RegistrarRemedio.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
//
// RegistrarRemedio.swift
// MyDoctor
//
// Created by Turma01-3 on 08/10/24.
//
import SwiftUI
struct NovoRemedioView: View {
@State private var nome: String = ""
@State private var hora: String = ""
@State private var detalhe: String = ""
@State private var inicioTratamento: Date = Date()
@State private var fimTratamento: Date = Date()
@State private var unidade: String = "mg"
@State private var quantidade: String = ""
@State private var estoque: String = ""
func adicionarRemedio() {
guard let quantidadeDouble = Double(quantidade) else { return }
guard let estoqueDouble = Double(estoque) else {return}
let novoRemedio = Remedio(
id: carregarRemedios().count,
nome: nome,
hora: hora,
detalhe: detalhe,
inicioTratamento: inicioTratamento,
fimTratamento: fimTratamento,
unidade: unidade,
quantidade: quantidadeDouble,
estoque: estoqueDouble
)
salvarRemedios(novoRemedio)
nome = ""
hora = ""
detalhe = ""
quantidade = ""
estoque = ""
}
var body: some View {
Form {
Section(header: Text("Novo Remédio").bold().font(.title) ) {
TextField("Nome", text: $nome)
TextField("Hora (ex: 08:00)", text: $hora)
TextField("Detalhe", text: $detalhe)
DatePicker("Início do Tratamento", selection: $inicioTratamento, displayedComponents: .date)
DatePicker("Fim do Tratamento", selection: $fimTratamento, displayedComponents: .date)
Picker("Unidade", selection: $unidade) {
Text("mg").tag("mg")
Text("ml").tag("ml")
Text("cápsulas").tag("cápsulas")
}
TextField("Quantidade", text: $quantidade)
.keyboardType(.decimalPad)
TextField("Em Estoque", text: $estoque)
.keyboardType(.decimalPad)
}
Section {
Button(action: adicionarRemedio) {
Text("Adicionar Remédio")
.frame(maxWidth: .infinity)
.padding()
.background(Color.pink)
.foregroundColor(.white)
.cornerRadius(8)
}
}
}
.scrollDisabled(true)
.scrollContentBackground(.hidden)
.padding(.top,40)
.navigationTitle("Novo Remédio")
}
}
#Preview {
NovoRemedioView()
}