mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2024-11-26 18:21:00 +00:00
Make primary action bold: (#1021)
This commit is contained in:
parent
b927c680d7
commit
e4b880dfe5
4 changed files with 6 additions and 4 deletions
|
@ -41,8 +41,10 @@ struct SettingsTabs: View {
|
|||
.toolbar {
|
||||
if UIDevice.current.userInterfaceIdiom == .phone {
|
||||
ToolbarItem {
|
||||
Button("action.done") {
|
||||
Button {
|
||||
dismiss()
|
||||
} label: {
|
||||
Text("action.done").bold()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -116,7 +116,7 @@ public struct EditAccountView: View {
|
|||
if viewModel.isSaving {
|
||||
ProgressView()
|
||||
} else {
|
||||
Text("action.save")
|
||||
Text("action.save").bold()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -60,7 +60,7 @@ public struct EditRelationshipNoteView: View {
|
|||
if viewModel.isSaving {
|
||||
ProgressView()
|
||||
} else {
|
||||
Text("action.save")
|
||||
Text("action.save").bold()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -118,7 +118,7 @@ public struct StatusEditorView: View {
|
|||
if viewModel.isPosting {
|
||||
ProgressView()
|
||||
} else {
|
||||
Text("status.action.post")
|
||||
Text("status.action.post").bold()
|
||||
}
|
||||
}
|
||||
.disabled(!viewModel.canPost)
|
||||
|
|
Loading…
Reference in a new issue