mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2024-11-26 18:21:00 +00:00
Make primary action bold: (#1151)
This commit is contained in:
parent
df4a76f9d1
commit
31744067e4
2 changed files with 4 additions and 2 deletions
|
@ -204,7 +204,7 @@ struct EditFilterView: View {
|
||||||
if isSavingFilter {
|
if isSavingFilter {
|
||||||
ProgressView()
|
ProgressView()
|
||||||
} else {
|
} else {
|
||||||
Text("action.done")
|
Text("action.save").bold()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.disabled(!canSave)
|
.disabled(!canSave)
|
||||||
|
|
|
@ -99,8 +99,10 @@ public struct FiltersListView: View {
|
||||||
@ToolbarContentBuilder
|
@ToolbarContentBuilder
|
||||||
private var toolbarContent: some ToolbarContent {
|
private var toolbarContent: some ToolbarContent {
|
||||||
ToolbarItem(placement: .navigationBarTrailing) {
|
ToolbarItem(placement: .navigationBarTrailing) {
|
||||||
Button("action.done") {
|
Button {
|
||||||
dismiss()
|
dismiss()
|
||||||
|
} label: {
|
||||||
|
Text("action.done").bold()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue