|
@@ -170,8 +170,12 @@ extension Bolus {
|
|
|
leading: Button {
|
|
leading: Button {
|
|
|
carbsView()
|
|
carbsView()
|
|
|
}
|
|
}
|
|
|
- label: { Text(fetch ? "Back" : "Meal") },
|
|
|
|
|
-
|
|
|
|
|
|
|
+ label: {
|
|
|
|
|
+ HStack {
|
|
|
|
|
+ Image(systemName: "chevron.backward")
|
|
|
|
|
+ Text("Meal")
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
trailing: Button { state.hideModal() }
|
|
trailing: Button { state.hideModal() }
|
|
|
label: { Text("Close") }
|
|
label: { Text("Close") }
|
|
|
)
|
|
)
|